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
7
votes
6 answers

Desktop application on JavaScript

Is there any system/compiler/SDK/IDE that provides an ability to develop desktop applications using JavaScript?
Sergey Metlov
  • 25,747
  • 28
  • 93
  • 153
7
votes
1 answer

flutter for macOS : How to access "user-selected" desktop files and folders

My setup macOS Big Sur Xcode 12.5.1 With macOS sandboxing, I've enabled access to User selected file Download folder Picture folder Music folder Movie folder all with Read/Write permissions. However, when I use the official file_selector and…
kakyo
  • 10,460
  • 14
  • 76
  • 140
7
votes
7 answers

Open website in the user's default browser without letting them launch anything else?

I would like to open a website in a user's default web browser, however since the url is user-defined I would also like to prevent them from doing anything other than opening a website. I have seen people use Process.Start(url); to open a site in…
Rachel
  • 130,264
  • 66
  • 304
  • 490
7
votes
7 answers

How to write applications for different platforms? Linux, Mac, Windows and Mobile Platforms

We want to write a client for an online service which should be available on as many platforms as possible. This question is about what programming language and framework we should use to create this client. These platforms are required: Linux, Mac,…
Eliasdx
  • 2,190
  • 2
  • 23
  • 33
7
votes
3 answers

Architecture Question: GWT or Vaadin to create Desktop Application?

We're planning on creating a feedreader as a windows desktop- and iPad application. As we want to be able to show Websites AND to run (our own) JavaScript in this application, we thought about delivering the application as HTML/CSS/JavaScript, just…
Akku
  • 4,373
  • 4
  • 48
  • 67
7
votes
5 answers

JavaScript desktop applications?

Is it possible to create Windows desktop applications in JavaScript? I am aware of HTA (HTML Application) programs, but was wondering if there were a newer .NET or other solution where I could make use of the DLL libraries included with Visual…
posfan12
  • 2,541
  • 8
  • 35
  • 57
7
votes
2 answers

Send Keystrokes to a program even if its in background using c#

I wanna send key stroke to a program even if it is running in background. But I can do this only for NOTEPAD like this, [DllImport("user32.dll")] protected static extern byte VkKeyScan(char ch); [DllImport("user32.dll", SetLastError =…
Sency
  • 2,818
  • 8
  • 42
  • 59
7
votes
7 answers

Which is better to do first, design the interface or write code?

In a one-man project (webpages or desktop applications) where you're both the designer and the developer, what is better to do first, design or write code?
perlit
  • 329
  • 4
  • 13
7
votes
1 answer

Which implications does multithreading have on the architecture of a desktop application?

I am writing a multithreaded desktop application. Generally I am unsure about the implications that multitreading has on the architecture. There is a lot of literature on architecture, but I know none that takes multithreading into account. There is…
Oswald
  • 31,254
  • 3
  • 43
  • 68
7
votes
4 answers

MVC.NET for the desktop

Is there any reason that MVC isn't equally useful for desktop apps as for web apps? What would be required to make an ASP.NET MVC directory tree implementable as a desktop app?
dkretz
  • 37,399
  • 13
  • 80
  • 138
7
votes
2 answers

How to run desktop application with database locally without installing any database Server?

I wanted to create a desktop application with database, am using Visual Studio 2013 and C# , Can anybody suggest me what server I used to create my database, in order to run my application in my client's system locally with out installing any…
Abey Mathew
  • 73
  • 1
  • 1
  • 4
7
votes
2 answers

What is considered "best practice" for user authentication/authorization for WPF and WCF applications?

Say I have a .NET rich client (WPF) application that will be deployed in 3 different scenarios simultaneously: client & server code runs in a single process client code runs on an intranet computer and communicates via WCF to a server machine…
BCA
  • 7,776
  • 3
  • 38
  • 53
7
votes
5 answers

Where does the professional sheen of a GUI application realistically come from?

I have been playing around with php-gtk recently and in the past I have experimented with Java to make GUI 'hello world' apps. However both these types of applications have had a bit of a clunky (almost childish) look and feel to them. I cannot deny…
JW.
  • 4,821
  • 5
  • 43
  • 60
7
votes
0 answers

Cross Platform, Open Source, Data Synchronization Strategy

The goal is to have occasionally connected clients belonging to one user running on an array of different platforms be able to share a common dataset. Server will be GNU/Linux. Platforms and devices initially targeted include: GNU/Linux, Android and…
justinzane
  • 1,897
  • 1
  • 26
  • 38
7
votes
2 answers

Desktop browse does not work in java for Ubuntu

desktop = Desktop.getDesktop().browse(uri); The above code does not work in the Ubuntu OS. If I execute this code, then my application gets struck and hangs for a while and during that time I cannot stop the running application in java console. The…
GowthamIyer
  • 485
  • 1
  • 5
  • 17