Questions tagged [desktop-application]

An application that runs stand alone in a desktop or laptop computer. Contrast with "Web-based application," which requires the Web browser to run.

3311 questions
5
votes
8 answers

Where should a WinForm app keep its logs?

I am working on a WinForm application, that allows working to work with "projects" (think about the application as Visual Studio, and projects as VS Solutions). My question is - where should the application keep its logging files? Some requirements…
SaguiItay
  • 2,145
  • 1
  • 18
  • 40
5
votes
3 answers

What is the best way to store a secure information for further usage?

My desktop application asks a user for proxy-server credentials to use it later. But what is the best way to store this secure information for further usage?
SKINDER
  • 950
  • 3
  • 17
  • 39
5
votes
2 answers

Where to store user data for a desktop application?

I am developing C#.NET desktop application and I want user to be able to create new database files. I´m new to desktop applications and I don´t really know where is the best place to store those files. I wanted to store them in my application folder…
Somachr
  • 464
  • 1
  • 8
  • 21
5
votes
7 answers

Differences in building UI between Web and Desktop Applications

The UI for web apps is constructed differently from the UI of desktop apps. I'm interested to know what are actually the major differences in building UI between the two styles of applications in the following areas: 1.Technology used …
Nikola Stjelja
  • 3,659
  • 9
  • 37
  • 45
5
votes
4 answers

Embedded web browser engine for cross platform desktop application?

Possible Duplicate: How to embed a web browser control in a cross-platform application? I'd like to embed a browsing engine (HTML,JS,CSS,DOM) in my desktop applications. Which one is most suitable for me if I want to use it in a cross-platform…
Johan Dahlin
  • 25,300
  • 6
  • 40
  • 55
5
votes
1 answer

How to setup jBPM in a desktop application?

What I want: I'm creating a prototype that is supposed to read a bpmn2 file and list all its tasks. What I'm using: Currently I have a simple Maven application using jBPM 6. I don't need any application server, workbench etc., because it's just a…
Fappaz
  • 3,033
  • 3
  • 28
  • 39
5
votes
6 answers

Preferred data-format for user-data in java applications?

I'm currently developing a desktop application in java, which stores user data such as bookmarks for ftp-servers. When deciding how to save these informations, I ended up using xml, simply because I like the way xpath works. I was thinking about…
Frederik Wordenskjold
  • 10,031
  • 6
  • 38
  • 57
5
votes
2 answers

Run python script on node-webkit startup (nw.js)

I have a Python-based app that controls LEDs. It uses Flask to create a webserver so I can work with a nice UI using HTML, CSS, and JS. My current process: python home.py navigate to localhost:5000 in browser profit! I'd like to take it a step…
ryantuck
  • 6,146
  • 10
  • 57
  • 71
5
votes
3 answers

One-Click application moving from Windows Forms to WPF

I have a Windows Forms application that I recently re-wrote in WPF, and I need to release it to my end users. I'd like to be able to have the users go to the ClickOnce install point for the WPF application and have their Windows Forms application…
Tyler
  • 514
  • 2
  • 9
5
votes
3 answers

What language is Picasa written in?

This was asked about a year ago, but never really answered. It would be great to find out what language/gui framework was used to write Google's desktop Picasa app. Any ideas?
JeremyFromEarth
  • 14,344
  • 4
  • 33
  • 47
5
votes
2 answers

Google Analytics for Desktop Application

I wanted to have analytics for my upcoming alpha release so I can analyse how the program gets used, how often errors occur and so on. Implementing an own approach of such is quite difficult and time consuming. Today I saw that the developers of the…
5
votes
3 answers

HTML5 UI on .NET Desktop Apps in Visual Studio

Does anybody happen to know if it is possible to develop a .NET based desktop app in Visual Studio with HTML5 as a front-end? I know the answer on MSDN a couple of years back seemed to be no, but I'm wondering if there has been any change. I know…
ChrisC
  • 1,161
  • 12
  • 26
5
votes
3 answers

When click on Hyperlink in JavaFX, a relevant URL should open in browser

I am developing an application in which I have some links added to the Listview, and these links will keep on adding at runtime on some condition. What I can't find is a way to to open a url when clicking on a particular link. This is the code for…
Anish Sharma
  • 115
  • 1
  • 2
  • 9
5
votes
1 answer

Chromium Embedded Framework (CEF) html5 desktop application

I am new to Chromium Embedded Framework (CEF). How can I create an HTML5 desktop application using CEF. I serached a lot. But still confused about developing the applicaion. please help.
the_learner
  • 196
  • 2
  • 9
5
votes
2 answers

JPA desktop application single or multiple instances of EntityManager

In a desktop application that runs in a Java SE environment (no DI, no frameworks other than JPA, plain Java) it is better to create a new EntityManager for each operation in the persistence layer or share a single instance of the EntityManager in…
Fedy2
  • 3,147
  • 4
  • 26
  • 44