An application that runs stand alone in a desktop or laptop computer. Contrast with "Web-based application," which requires the Web browser to run.
Questions tagged [desktop-application]
3311 questions
23
votes
11 answers
Convert PHP-MySQL web application to desktop app (exe)
I have developed a PHP-MySQL web application, which is a school-based project.
My client wants this application to be converted into a .exe file such that it can be installed on his desktop and use it.
How the PHP website can be converted to a .exe…

shasi kanth
- 6,987
- 24
- 106
- 158
22
votes
5 answers
UWP on desktop closed by top X button - no event
An UWP app which runs on desktop can be closed from the top X button but it doesn't have any event for it. It is known that on phones and tablets an app should rely on Suspending event, no matter how it's triggered and then the app should rely on…

tomab
- 2,061
- 5
- 27
- 38
22
votes
3 answers
The "right" way to add python scripting to a non-python application
I'm currently in the process of adding the ability for users to extend the functionality of my desktop application (C++) using plugins scripted in python.
The naive method is easy enough. Embed the python static library and follow any number of the…

kurige
- 3,749
- 2
- 21
- 24
22
votes
4 answers
How to deserialize json string to object list in c# dot
I am working with the following JSON string
{
"transactions":
[
{
"paymentcharge":"0.0",
"amount":352,
"id":13418,
"shippingcharge":35,
"shippingtype":2,
"status":2,
"paymenttype":1,
"date":"2012-10-06…

G. M. Nazmul Hossain
- 456
- 2
- 6
- 15
21
votes
4 answers
How to remove actionPerformed methods in NetBeans
When a JButton is added to a content pane, we can set an action by double clicking the button or Right click->Event->Action->actionPerformed.Let say, we set somthing to happen. Then we need to remove that function.It can be done easily by deleting…

Débora
- 5,816
- 28
- 99
- 171
21
votes
2 answers
Dealing with slow Electron startup
Context
I have spent some hours playing with Electron and I have observed that it consistently takes more than 2.5 seconds to draw a trivial html file to the screen. The timeline is roughly as follows:
60 ms: app ready event is triggered; we create…

aochagavia
- 5,887
- 5
- 34
- 53
21
votes
10 answers
What inexpensive tools have you used to develop lightweight Windows GUI apps (that you would use again)
By lightweight apps, I mean the toolset can create a single executable file or set of files that can be copied into a folder and run as an EXE with no other installation process.
Of particular interest:
What's the programming language
what versions…

Ash
- 60,973
- 31
- 151
- 169
21
votes
5 answers
Can I send SMS Messages from a C# Application?
I'm looking to build a program that would allow me to send SMS messages directly from the C# Application. I intend to build an 'Automatic Appointment Reminder' system that would automatically send SMS messages to recipients' mobile phones notifying…

Lloyd
- 435
- 3
- 12
- 29
20
votes
3 answers
How to create desktop application using Angular 2
Is it possible to create Desktop(Windows OS) application using Angular 2?
If yes then how can we build setup for desktop? Will it support windows 7 and Earlier?
I noticed that, Angular 2 is for cross platform.

Nikunj Patel
- 395
- 1
- 5
- 19
20
votes
2 answers
Running JavaScript app outside of the browser
I have a couple of little widgets that I have made to run in the browser, just basic JavaScript and HTML. They are little tools that have blank backgrounds and things like CPU usage, and just little toys like that.
I originally developed these tools…

Travis Tubbs
- 827
- 1
- 14
- 32
20
votes
4 answers
How to save application options before exit?
I have made an application and i need to save some options before exit.(something like window dimension, ..., that will be written in a file.)
The main frame has set this:
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
How can I save options…

artaxerxe
- 6,281
- 21
- 68
- 106
19
votes
4 answers
Why can't I find Java desktop application in Netbeans 7.1
I downloaded Netbeans 7.1 with all bundle from http://netbeans.org/downloads and installed it successfully on Windows 7.
But I can't find Java Desktop Application which should be under Java category when add new project as 7.0 does.
Where is it? Or…

Ovilia
- 7,066
- 12
- 47
- 70
19
votes
7 answers
Options for distribution of an offline Ruby on Rails application
I am developing an application in using Ruby on Rails, mostly as an excuse to learn the language.
This is not intended to be a web-based application - and perhaps I have chosen the wrong language, but...
My understanding is, that in order to run an…

Brent
- 16,259
- 12
- 42
- 42
19
votes
6 answers
How to make an auto-complete textbox in a winforms desktop application
I have a list of words. The list contains about 100-200 text strings (it's names of metro stations actually).
I want to make an auto-complete textbox. For an example, user press 'N' letter, then an (ending of) appropriate option appear (only one…

alex4
- 217
- 1
- 2
- 4
17
votes
2 answers
How can I make portable python desktop application?
The requirement is to make an application portable, meaning no installer. I looked at py2exe and I am afraid I need to run install if I want to run it under Windows.
So my question is, can I make a portable python desktop application without any…

CppLearner
- 16,273
- 32
- 108
- 163