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
1
vote
0 answers

Flexible ListView in JavaFX

In one part of my application I need to make a search engine that will search the database and display the result in a ListView. However, depending on the mode of my search, sometimes I want to display one value per row and sometimes multiple…
jankok
  • 11
  • 2
1
vote
1 answer

Packaging HTML5 app for desktop and mobile?

I am looking for a mature solution to package a HTML5 project (html5+javascript+css) as a desktop and mobile app. The application is currently functional on the web but for convenience I want to offer it as an mobile app (at least for Android and…
Gaspy
  • 188
  • 1
  • 8
1
vote
2 answers

my Gridview still freezes in backgroundworker Dowork while using this.invoke(MethodInvoker)delegate

I want to update my gridview gradually while retrieving data I've a backgroundworker Do work function as follows private void backGroundWrkr_DoWork(object sender, DoWorkEventArgs e) { DataTable dtInstant = new DataTable(); …
1
vote
1 answer

Creating desktop application based on Android project

I've created an Android application, which is generally aimed on Tablets. Its main business-logic is in pure java, it contains around 10-15 Activities, SQLite database, it performs HTTP transactions, exports information to different formats etc. My…
Jenya Pu
  • 733
  • 1
  • 7
  • 13
1
vote
1 answer

can a BackgroundWorker object in c# be ran without a Windows Forms?

I need to develop a C# application using **BackgrounWorker**, but without using Windows Forms. I've seen some examples presented by Microsoft regarding the use of the BackgrounWorker class, and they're all developed specifically for Windows Forms.…
ekremer
  • 311
  • 4
  • 23
1
vote
2 answers

Implement web based desktop application with python

I want to make a application that run as a web application or desktop application, I know how to implement for a web server using Django or Flask, i prefer Django, but is there any way to port it to a desktop application too? I found a nodewebkit…
efirvida
  • 4,592
  • 3
  • 42
  • 68
1
vote
1 answer

Is there a solution to get desktop active application name from a chrome extension?

I would need the list of currently opened desktop apps (+ files opened in it) from a Chrome Extension, or at least the active application name (With current focus on the desktop). Use case : Imagine a chrome extension that would get the list of tabs…
1
vote
2 answers

DatagridView color controls not working on new form

I have a datagrid on main form. On cell click, I am creating a new form on which I am displaying a new data grid. On this new grid, i want to change background color of certain cell. I have tried using : …
kedar
  • 103
  • 1
  • 11
1
vote
1 answer

How should toolbars, menus, and their commands be implemented in a desktop application?

At a conceptual level (not platform/framework specific), how should components like toolbars and menus (and the commands they contain) be implemented in a desktop application that uses the MVC pattern, with minimum coupling & maximum code reuse?
user65663
1
vote
1 answer

How to make a WPF Desktop application accessible over a network

I am designing a WPF application that connects to a MS SQL Server database using Entity Framework. The application reads data from a Excel file and saves the records to the database. Now the next requirement has come that this application should be…
WAQ
  • 2,556
  • 6
  • 45
  • 86
1
vote
2 answers

Java / .NET spawn browser with cookie set

I can spawn a browser from my Java thick client using java.awt.Desktop. Apprarently, I can also spawn a browser from my .NET client using System.Diagnostics.Process.Start My question is, is there a way in both Java / .NET to set a cookie when…
toolkit
  • 49,809
  • 17
  • 109
  • 135
1
vote
1 answer

Java .JAR to desktop shortcuts/proper apps for windows, mac and debian

I have a multiplatform jar, that can run when clicked on all 3 platforms. What would be the best way to install desktop shortcuts / apps, that would basically just symlink or link to that jar?
dessalines
  • 6,352
  • 5
  • 42
  • 59
1
vote
3 answers

Best way to start desktop application development for a web developer

I'm a web developer right now and I do that professionally. (PHP/MySQL/JavaScript) (Java/MySQL/Javascript) (RoR) I make some scripts and sell them too. Now I'd like to add desktop application development to my repertoire. What languages/frameworks…
Kailash
  • 85
  • 2
  • 8
1
vote
2 answers

CDI with desktop application

Have some business logic using CDI (@javax.inject.Inject and @javax.persistence.PersistenceUnit). Want reuse it inside desctop application. Added beans.xml into META-INF folder. Set Java 7 as default. Wrote simple class: public class Main { …
Gregory
  • 413
  • 5
  • 16
1
vote
1 answer

Regex in class name to identify controls

A certain program's control ClassnameNN was identified by AutoIt Window Information Tool as: WindowsForms10.BUTTON.app.0.24f4a7c_r27_ad19 in a previous version. In the current version it changed to: WindowsForms10.BUTTON.app.0.24f4a7c_r13_ad19…
Abhishek_Mishra
  • 4,551
  • 4
  • 25
  • 38