desktop-application

How do you control what monitor your application opens on?

社会主义新天地 提交于 2019-12-20 10:10:51
问题 As a two-monitor user at work, I've noticed that applications behave differently with regards to what monitor they open on (primary or secondary monitor, the last monitor the application opened on, and so on). To be honest, some applications annoy me because I want them to open on my primary monitor and I'll move them to my secondary if I want them there. However, these applications are done and out of my control, so I want to ask about my own applications that might be run by people using

Developing lightweight (no runtime) Windows based GUI applications using free tools [closed]

喜夏-厌秋 提交于 2019-12-20 09:49:38
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Does anyone know of free tools (languages, environments) that would support development of GUI applications on the Windows platform? I am looking to be able to create a single executable file that has no dependencies on any external runtime or library. I would like to be able to then run this EXE in a very

Python in Desktop Application Development

牧云@^-^@ 提交于 2019-12-20 09:38:42
问题 My company is revamping the IT infrastructure and systems, so we are at the middle of finalizing the technology for developing the new system. We have come to two candidates; Java & Python. The main criteria of the choice is the language must be complete; in a sense that it must be able to use for web & desktop applications development. Java is proven is this field, with many good web framework (JSF, Hibernate, etc) and relatively good GUI library (SWT, Swing). However, Python looks more

How to build native C++ apps with HTML/CSS UI?

拈花ヽ惹草 提交于 2019-12-20 08:17:19
问题 Is it possible to develop a C++ program while using HTML and CSS for the user interface? I know about programming with Javascript using a Webkit container, but I am really interested in C++ development. I felt in love with C# WPF when I developed under Windows, but now I moved to Linux and I haven't found a good tool for using markup for interfaces. For this, I would like to mix HTML and CSS, which are very lightweight and easy to use, with C++ code, with something like WPF. Oh, one more

Examples of good Java desktop applications [closed]

放肆的年华 提交于 2019-12-20 08:10:29
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . More of a wiki list/collection, I'm looking for a list of good Java desktop apps. I've added a couple below to get started. Please

Dotnet :- How to achieve windows authentication in window form application?

血红的双手。 提交于 2019-12-20 04:36:31
问题 I want to make a windows form application and want to use windows authentication to log in the user, it has to be used in intranet. the applcation should accept the user name and password from user and should authenticate it. how to achieve this. 回答1: You can achieve this using Interop Services. Use the below Code. [System.Runtime.InteropServices.DllImport("advapi32.dll")] public static extern bool LogonUser(string userName, string domainName, string password, int LogonType, int LogonProvider

Speech recognition for windows desktop application

£可爱£侵袭症+ 提交于 2019-12-20 04:22:09
问题 In Ionic Typescript application I'm using import { SpeechRecognition, SpeechRecognitionListeningOptionsAndroid, SpeechRecognitionListeningOptionsIOS } from '@ionic-native/speech-recognition'; which work impressive on mobile device, gives you number of correct or close recognition variants result even with a quite low speech. In WinForms C# desktop application, I'm using System.Speech.Recognition; , which works fine, but not enough in comparison, fairly often event gives many non-accurate

Self-contained database?

房东的猫 提交于 2019-12-19 09:41:50
问题 Is there a way to distribute a (smallish) self-contained relational database along with an Windows application that does not require users to install additional dependencies such as MS Access, SQL Server, MySQL, SQLite, etc.? Only the application will be accessing the database - not users directly. 回答1: Microsoft SQL Server Compact 4.0 SQL Server Compact Edition 3.5 SQLite to name just a few. 回答2: SQL Server Compact Edition 4 回答3: I would embed SQLite in my application. There's various ways

Building Cross Platform app - recommendation

岁酱吖の 提交于 2019-12-19 07:56:59
问题 I need to build a fairly simple app but it needs to work on both PC and Mac. It also needs to be redistributable on a disc or usb drive as a standalone desktop app. Initially I thought AIR would be perfect for this (it ticks all the API requirements), but the difficulty is making it distributable, as the app would require the AIR runtime to be installed to run. I came across Shu Player as an option as it seems to be able to package the AIR runtime with the app and do a (silent?) install.

How can I use google text to speech api in windows form?

北城余情 提交于 2019-12-18 13:50:12
问题 I want to use google text to speech in my windows form application, it will read a label. I added System.Speech reference. How can it read a label with a button click event? http://translate.google.com/translate_tts?q=testing+google+speech This is the google text to speech api, or how can I use microsoft's native text to speech? 回答1: UPDATE Google's TTS API is no longer publically available. The notes at the bottom about Microsoft's TTS are still relevant and provide equivalent functionality.