desktop-application

How Do I Get Started on the Legacy 1.2.0.RC4 TideSDK? [closed]

喜欢而已 提交于 2019-11-28 23:27:52
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I have downloaded the legacy 1.2.0.RC4 from the http://tidesdk.org. What do I do with it following the download. How do I get started?

Options for distribution of an offline Ruby on Rails application

痞子三分冷 提交于 2019-11-28 19:30:28
I am developing an application in using Ruby on Rails, mostly as an excuse to learn the language. This is not intended to be a web-based application - and perhaps I have chosen the wrong language, but... My understanding is, that in order to run an instance of this application on somebody else's computer, they would need to install ruby on rails, and a webserver (or webrick, perhaps), as well as my application code. I am just curious if there are any other options for distributing my application as a standalone app, or perhaps just a simple way to package up a web browser and ROR together with

Convert php site to .exe desktop app

耗尽温柔 提交于 2019-11-28 18:21:34
i have developed a php-mysql web application, which is a school based project. My client wants this application to be converted into a .exe file such that it can be installed on his desktop and use it. How the php website can be converted to a .exe file and can it be run without the need of a database/server software ? Please advice. The convenient solution is not to convert the website to .exe. I think it will be better if you have portable server/php/mysql and make the website work from a usb or CD with autorun. I was also looking for a similar solution and found https://code.google.com/p

How to save application options before exit?

元气小坏坏 提交于 2019-11-28 17:17:39
I have made an application and i need to save some options before exit.(something like window dimension, ..., that will be written in a file.) The main frame has set this: frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); How can I save options that interests me?(before exiting of course) Thanks! Romain Linsolas If you just want to do something when the application is shutting down, you can hook the shutdown using this code: Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() { public void run() { // Do what you want when the application is stopping } })); However, this will not

java background/daemon/service cross platform best practices

谁都会走 提交于 2019-11-28 17:10:14
问题 I am looking for the best way to make my desktop java program run in the background ( daemon/service ?) across most platforms (Windows, Mac OS, Linux [Ubuntu in particular]). By "best way" I am hoping to find a way that will: require a minimum amount of platform-specific code. not require the user to do anything a general computer user couldn't/wouldn't do not be a resource hog. I understand that my requirements may be unrealistic but I am hoping there is some sort of "best practice" for this

Desktop application development with Javascript and HTML

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-28 17:06:33
I am looking for Titanium Appcelerator alternatives for Desktop application development with HTML and JavaScript. I want to convert a web app to a desktop application. Hence, there will be a lot of server interaction. Appcelerator was a good choice, but it looks like the company is no longer interested in the Desktop SDK. Also, ajax request from Appcelerator does not retain cookies. I read that Adobe Air can be used for desktop app development, but I don't want to use flash. How good is XULRunner? Will it allow features like Growl notificaiton and creating tray icons? Will I be able to develop

How to change windows Applicatoin's default icon in Setup Project

自作多情 提交于 2019-11-28 17:05:28
How to change the Windows Application's default icon with other one in C# desktop application. I am trying to change it in Setup Project but it is not. I want to show my own icon with Application's shortcut rather then windows default icon It is truly odd that when you are creating a deployment (set up) project, and you create a shortcut to the "Primary output" (an .exe), the shortcut does not automatically get the .exe's icon. Instead it gets a generic document shortcut icon. Some of the answers here suggest adding an .ico file to the installer, but that certainly feels wrong. You can get the

HTML5 Desktop Wrapper/Framework [closed]

隐身守侯 提交于 2019-11-28 15:06:01
I'm currently mid-way through building a HTML5 application. I'd really like to deploy this to desktop and I've looked at solutions such as Sencha but have had no luck (I found Sencha disappointing and frustrating to work with). I'd like cross platform compatibility and ease of deployment but I haven't found anything open-source or commercial that looks like it could do the job effectively. Can anyone with some experience suggest a framework which might be suitable for packaging and deploying a HTML5 application on the desktop? An end requirement of this is that it will functional on both Mac

System Tray (Menu Extras) icon in Mac Os using Java

前提是你 提交于 2019-11-28 14:56:53
问题 I'm developing a desktop application using Java. I want to put an icon (with a contextual menu) on the system tray (called Menu Extras in Mac Os). Java 6 comes with support for doing this in Windows and Linux, but it doesn't work in Mac Os. I have seen some applications doing what I want in all three operating systems (e.g. DropBox), but I don't know if they are made with Java. How can I achieve this? If it's not possible in Java, is there any other cross-platform language able to do that?

How can I send a message from Google Chrome extension to desktop application?

旧时模样 提交于 2019-11-28 13:39:12
I have a Windows desktop application which must work in collaboration with my Chrome extension. Can I send a message to my desktop app somehow from Google Chrome extension? Which IPC objects can I use? Mike Grace I see three options: You could use the internet. You can have a remote service that both the chrome extension and your desktop app talk to, to communicate. You could have your desktop app have a simple server built into it so that the chrome extension can make local http requests to it to communicate with it. Use the Google NPAPI plugin functionality to have full access to the