Tagged Questions
The desktop tag has no wiki summary.
61
votes
33answers
37k views
Good Free Alternative To MS Access
Consider the need to develop a lightweight desktop DB application on the Microsoft platforms.
It could be done fairly easily with MS Access but I'd like to be able to distribute it to others and I ...
36
votes
2answers
10k views
Chrome desktop notification example?
Is there an hosted example code (Javascript) that demonstrates Chrome desktop notifications? I'd like that use that in my own code.
Update: Here's a blog post explaining webkit notifications with an ...
27
votes
14answers
7k views
Can you do Desktop Development using JavaScript?
I know there's JScript.NET, but it isn't the same as the JavaScript we know from the web.
Does anyone know if there are any JavaScript based platforms/compilers for desktop development? Most ...
23
votes
26answers
9k views
Which embedded database to use in a Delphi application?
I am creating a desktop app in Delphi and plan to use an embedded database. I've started the project using SQlite3 with the DISQLite3 library. It works but documentation seems a bit light. I ...
21
votes
1answer
2k views
Hardware-accelerated OpenVG implementation on Desktop based on OpenGL ES
I'm currently trying to get OpenVG up and running on my desktop. The problem comes here: I am / will be developing an application for a Windows CE device (with .NET compact framework), which has ...
18
votes
6answers
1k views
What off-the-shelf licensing system will meet my needs? [closed]
I'm looking for an off-the-shelf license system for desktop software.
After some research on the net -- and of course here on StackOverflow -- I haven't found one the suits our needs. I have a ...
17
votes
8answers
2k views
Cross-platform desktop notifier in Python
I am looking for Growl-like, Windows balloon-tip-like notifications library in Python. Imagine writing code like:
>>> import desktopnotifier as dn
>>> dn.notify('Title', 'Long ...
17
votes
8answers
17k views
VS2008 Setup Project: Shared (By All Users) Application Data Files?
fellow anthropoids and lily pads and paddlewheels!
I'm developing a Windows desktop app in C#/.NET/WPF, using VS 2008. The app is required to install and run on Vista and XP machines. I'm working on ...
15
votes
2answers
235 views
How to get the icon for a file extension or filetype without creating a temp file?
I list some filenames with their icons (like the ones in the Windows Explorer) in a JTable. I know the two ways to get the icon if I have a File object from the local file system:
...
15
votes
12answers
1k views
PHP as a Desktop Programming Language
I'm not much of a programmer, PHP is where I'm comfortable. And sometimes I find that I need to do things, such as arrange files or rename files on a mass scale on my computer. And I think I could do ...
15
votes
14answers
3k views
Control multiple PCs with single Mouse and Keyboard
As a programmer I found it very hard to use my laptop and workstation with two different input devices, Can anyone suggest a good solution to use single mouse and keyboard to control my two machines
...
15
votes
12answers
10k views
Java Desktop application framework
I am working on designing and building a desktop application. I am thinking about using eclipse or netbeans for the base of this application. However, I have never built on either of these ...
13
votes
4answers
1k views
Which icon sizes should my windows application's icon include?
I have a windows application which will run in Windows XP and newer (i.e. Vista/Windows 7). According to the Vista UI Guidelines, the standard sizes are 16x16, 32x32, 48x48, 256x256 (XP standard sizes ...
12
votes
5answers
335 views
What are some of the best ways of doing silent updates for a desktop app?
Specifically, this is for a .NET 2.0 desktop application. Currently we require the user to manually go through the update process via our website.
What are the best ways of doing a silent or ...
12
votes
15answers
1k views
Does desktop development matter? [closed]
In some downtime at work that's coming up, I plan to sharpen and round out my development skills a bit. I've been pretty heavily into web development for the past few years, right out of college, and ...
12
votes
3answers
2k views
Not supported platforms for java.awt.Desktop.getDesktop()
Since Java 6 there is a class java.awt.Desktop. There are some nice methods but the class is not supported on all platforms. The methods java.awt.Desktop.getDesktop() throw an ...
12
votes
28answers
3k views
Do you prefer to code on a Laptop or a Desktop, or both?
What is your primary development machine - a Desktop or a laptop? Why?
Do you use both - if so, do you use source control to keep them synched?
This might seem like a dumb question but I'm on the ...
11
votes
5answers
913 views
What's a good desktop-based code review tool?
Is there a desktop-based tool that's used for code reviews or do we just have to print out the code and mark it up by hand?
11
votes
8answers
1k views
Build an installer for .NET app that can run on Windows and OS X?
I am surprised I could not find this question already asked, so if I simply missed it please notify promptly.
I need to write a very small, fairly simple application in .NET that will be downloaded ...
10
votes
5answers
7k views
How do I enable a second monitor in C#
Is it possible to enable a second monitor and extend the Windows Desktop onto in C#. It needs to do the equivalent of turning on the checkbox in the image below?
10
votes
5answers
3k views
Need Advice on Implementing a Time-limited Trial
I'm developing a shareware desktop application. I'm to the point where I need to implement the trial-use/activation code. How do you approach something like this? I have my own ideas, but I want to ...
10
votes
12answers
834 views
Designing a GUI
How would you, as a developer with little (or no) artistic inclination, design a GUI for an application? In particular, I'm thinking about desktop apps but anything that relates to Web apps is ...
9
votes
2answers
157 views
Problem in Running Java Application in Non JDK/ Non JRE installed system
I am working in a java application. It is desktop application for Windows Operating System. I am creating a installer for my application. My application works fine for the system where jdk is ...
9
votes
2answers
5k views
9
votes
7answers
3k views
Embedded Web Server in Python?
Can you recommend a minimalistic python webserver that I can embedded in my Desktop Application.
8
votes
3answers
410 views
Detect desktop environment in Linux programmatically in C
I am trying to detect whether I am running on a Gnome or KDE desktop environment.
I know I can check via a ps -aux and grepping either gnome or KDE but that's not good: 1) what if I am on a gnome ...
8
votes
1answer
2k views
Create popup “toaster” notifications in Windows with .NET
I am using .NET and am creating a desktop app/service that will display notifications in the corner of my Desktop when certain events are triggered. I don't want to use a regular Message Box b/c that ...
8
votes
3answers
2k views
Qt 4.x: how to implement drag-and-drop onto the desktop or into a folder?
I've written a little file-transfer application written in C++ using Qt 4.x ... it logs into a server, shows the user a list of files available on the server, and lets the user upload or download ...
8
votes
5answers
3k views
How to get the Desktop path in java
I think this will work only on an English language Windows installation:
System.getProperty("user.home") + "/Desktop";
How can I make this work for non English Windows?
8
votes
8answers
425 views
When to choose between web interface and native GUI?
Many applications (especially the networks' ones e.g. file sharing, sql query program, some multiplayer games) as we know today can be easily provided by using a web interface.
My question is when ...
8
votes
5answers
2k views
Graphically template a .NET winforms application
I created a pretty fancy winforms app for my company. We had a graphic designer create the GUI, which was a pain to implement, all graphical buttons, lots of layered backgrounds and logos, ...
8
votes
16answers
923 views
Are .NET languages really making any kind of dent in consumer desktop applications?
Do you write consumer desktop applications with .NET languages? If so what type?
My impression is that most consumer desktop applications are still native compiled applications in C, C++ and the ...
7
votes
10answers
1k views
How to make industry standard desktop Java applications?
I know how to create the basic controls in Swing, but coming to industry standard application development, I lack the skills to do them.
I am designing a small Java Swing application. Instead of ...
7
votes
2answers
2k views
Django Projects as Desktop applications : how to?
How to make Django projects packaged as desktop applications , i found some tutorials but is there any solution as DjangoKit , for Linux and Windows ?!
List of related tutorials :
Deploying a ...
7
votes
4answers
8k views
C#: Get complete desktop size?
How do I find out the size of the entire desktop? Not the "working area" and not the "screen resolution", both of which refer to only one screen. I want to find out the total width and height of the ...
7
votes
13answers
1k views
What is the next great UI metaphor that will replace the Desktop?
The desktop metaphor has been hanging around for a number of years now. The creativity within the software field should be able to produce a new cooler metaphor that doesn't involve dragging windows ...
7
votes
17answers
1k views
Should a novice programmer spend time learning to write “desktop” applications these days, or is the web where it's at?
As a novice, I've spent time learning a smattering of C and a fair bit of PHP. I've looked at writing desktop applications for Windows, but there seems to be a fair barrier to entry due to complexity ...
7
votes
6answers
2k views
Which Desktop Virtualization software runs most smoothly?
Background:
I'm running a full-time job and a part-time job in the weekends, and both my employers have supplied a laptop for me to work on. Of course I also have my powerful workstation at home to ...
7
votes
6answers
815 views
What's the best way to persist data in a Java Desktop Application?
I have a large tree of Java Objects in my Desktop Application and am trying to decide on the best way of persisting them as a file to the file system.
Some thoughts I've had were:
Roll my own ...
6
votes
1answer
155 views
How to enter Windows Flip 3D mode on Windows Vista and above?
Is it possible to trigger the Flip 3D mode on Windows Vista above systems programmatically?
It is the same as if you manually press CTRL + WIN + TAB
6
votes
1answer
1k views
Android Bluetooth sending file problem
I am writing a small program to send file between Android and PC through bluetooth. I already
read the bluetooth chat example in google android site.
Currently, my version works really well with ...
6
votes
1answer
215 views
How to quickly test Windows Gadgets?
How should one quickly test a Windows Gadget during development? Creating the archive, installing it and adding it to the desktop every time is extremely tedious...
6
votes
3answers
334 views
Implementing my own remote desktop in java
I am trying to implement my own remote desktop solution in java. Using sockets and TCP/UDP.
I know I could use VNC or anything else, but its an assignmentwork from school that I want to do.
So for ...
6
votes
4answers
405 views
What are the best practices for internationalizing a Java Swing desktop application?
I'm sure there are a lot of methods, but what's the recommended way to do this that has the least amount of impact to your code?
The obvious is that you create properties files, but how do you swap ...
6
votes
5answers
419 views
Advantages of Using Linux as primary developer desktop
I want to get some input on some of the advantages of why developers should and need to use Linux as their primary development desktop on a daily basic as opposed to using Windows. This is ...
6
votes
5answers
1k views
Get the logged in Windows user name associated with a desktop
I wish to enumerate all desktops in a system and get the logged in user name for that desktop. So far I have the following code snippit as an example of obtaining a HDESK handle and trying to ...
6
votes
9answers
8k views
What's the environment variable for the path to the desktop?
I'm writing a Windows batch file and want to copy something to the desktop. I think I can use this:
%UserProfile%\Desktop\
However, I'm thinking, that's probably only going to work on an ...
6
votes
3answers
420 views
Recommended books for Windows desktop application performance
I'm building a desktop application that runs in a Windows environment using .net technology.
It's important that this application run smoothly and consume as little of the user's system resources as ...
6
votes
10answers
588 views
PHP desktop applications
I have quite a few years experience of developing PHP web applications, and have recently started to delve into Python as well. Recently I've been interested in getting into desktop applications as ...
6
votes
7answers
2k views
Distributing Ruby/Python desktop apps
Is there any way besides Shoes to develop and distribute cross-platform GUI desktop applications written in Ruby?
I come to believe that general bugginess of _why's applications is exceptionally ...