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
1
vote
2 answers
which .net components does my application need?
I built a vb.net desktop application. it works beautifuuly on my pc. I created an installer and gave it to a co-worker to run. The program does not work.
Question: How can I figure out which .net components i need to provide along with my…

user228058
- 465
- 1
- 7
- 22
1
vote
3 answers
Writing Program for desktop that can switch to web
I am being asked to write a desktop application in .net and MSSQL for record keeping. I do have to build forms for keeping records printed in 15 pages or more related to single person. I am fine with seperating data layer and presentation layer.…

KoolKabin
- 17,157
- 35
- 107
- 145
1
vote
1 answer
libGdx not correctly displaying the color of a selected pixel
I am trying to have my program recognize when it has clicked a continent.
To do this, I have used:
new Color(texture.getTextureData().consumePixmap().getPixel(x, y));
with x and y corresponding to the mouse's respective coordinates.
This is the…

Orange Receptacle
- 1,173
- 3
- 19
- 40
1
vote
1 answer
Using AIR to add desktop GUIs
Suppose I develop an application with the logic as a CLI program that can be compiled to various platforms. To add a GUI, I could develop native versions separately for each platform or I could use a cross-platform tool like Tcl/Tk, wxLua, or PyGTK.…

user287424
- 1,219
- 12
- 22
1
vote
2 answers
Configuration storage for a desktop application
What are the benefits of choosing either:
a file in the user's home directory, e.g. ~/.myapp/config
using the user's gconf database
I already know a couple of things; storing data in the user's gconf database makes it a little harder for the user…

Delan Azabani
- 79,602
- 28
- 170
- 210
1
vote
3 answers
What is the best tool to make a CD-ROM Demo Application?
I have to make an application that will do the following:
Open a video file embedded in the application
Open some pdf files, preferably embedded in the application, but if it will have to open externally, it's no problem.
Work in fullscreen on the…

rfcordeiro
- 67
- 7
1
vote
0 answers
Use Deskshell to create an .exe with a sqlite backend?
So I convert an online php/mysql website to an offline javascript client side website/app. Which works in Google chrome. when I import the database data into the sqlite.
And now I like to make an executable (.exe) and I stumble upon Deskshell.…

alex
- 4,804
- 14
- 51
- 86
1
vote
1 answer
Create h2 database with Spring Boot if it not exists, then don't delete. Desktop application
I am writing a desktop applicaiton, which requires language dictationary.
I want my application to create h2 database only when user first time run my application, and then load translations into db from .xdxf dictationary.
After a quick looking…

sinedsem
- 5,413
- 7
- 29
- 46
1
vote
0 answers
Automatically save canvas png to local file system
I am a web developer and I have never built anything for Desktop.
I am working on a new project where I'm doing some canvas rendering in real time. It works just fine in low-res but I want to do it in high-res and save every frame as a PNG file on…

tim-we
- 1,219
- 10
- 16
1
vote
1 answer
Getting installed software from webpage
How does google pack knows what applications are installed on your system?
alt text http://img193.imageshack.us/img193/7548/googlepack.png

Shawn Mclean
- 56,733
- 95
- 279
- 406
1
vote
1 answer
Java libGdx: FreeTypeFontGenerator is not working (Black screen)
I added in a custom font Aller_light.ttf and when I try to run the program with the font drawn with no errors the screen is black, so I'm not sure if its rendering somewhere else off screen or its not rendering at all.
If you could give your 2 cents…

Adam Brickhill
- 61
- 1
- 8
1
vote
0 answers
Can a desktop app write to command line using javascript?
Say I use NW.js to get a native html/css/javascript app working. How would I use javascript to edit the folder contents of directories on the user system when they drag and drop in a folder, to read and write in files?
And then write to command line…

Joshua Tabansi
- 21
- 1
1
vote
0 answers
libgio: get_connected_drives() returns an empty list
I'm linking to libgio and using the VolumeMonitor class to retrieve the current mounted volumes. When i call get_connected_drives, it should return a list of drives (usb mass storage, cd drives) but it returns an empty list.
I made certain that i…

user3904083
- 331
- 2
- 5
1
vote
4 answers
Task T.IsCancelled = false; How can I make this true?
I have this asynchronous method :
private static async Task Initializ( ) { /*Do Stuff Here*/ }
I want to be able to monitor the task that results from calling this function :
Task T = Class.Initialize( );
if (T.IsCancelled){ /*Do Stuff Here*/…

Will
- 3,413
- 7
- 50
- 107
1
vote
4 answers
Is it posible to save file with the desired name I choose
Hi all i will have some file name to be saved with the name i choose . Like when i click on save on my form i will show a save dialog option and on the file name of that window i would like to have the filename of my own like some or other name and…

Developer
- 8,390
- 41
- 129
- 238