Dynamic web to Classic EXE application

Status
Not open for further replies.

umen242

New member
Mar 13, 2008
32
0
0
Hello all
im just asking but is there some kind of tool or compiler that
let me develop for the web that is using html js and php or asp on web server and DB
and then take it all and pack it as desktop application exe file ?
 


Nope not possible AFAIK.

That tool would have to exist as a browser, sql server, apache server and the site code itself all built and packaged into one application. You could package all of this together (xampp, site code, lightweight browser), then write a quick app just to launch the browser with the start page being the site that you want run. It would be an exe that the user is running but youre still just running apache service, etc. And it would be a very messy solution.

Or you would need a tool that could cross convert all the js & php code to a compileable language (c/c++/c#/vb), try work out how to convert the html + css to winforms and integrate or convert the mysql database. Even if this was to exist it would probably generate incredibly slow code.

There might be something in the latest MS ASP.Net stuff that could help you as there is some crossover there. But then you'll be learning c++\c#\vb anyway.

Question is why do you want to do this? If the answer is because you can code php, etc but cant code c, etc then you wont be able to do what you want to IMO. But if you're trying to develop an offline app tightly related to your online app, then there may be something in ASP.NET to help you.
 
Isn't Adobe AIR, or Microsoft Silverlight something like this? Dunno just shooting blind
 
Just build the site with an API and then build an application to make use of the API. You could definitely use Adobe AIR or Microsoft Silverlight for something like this.
 
Hello all
im just asking but is there some kind of tool or compiler that
let me develop for the web that is using html js and php or asp on web server and DB
and then take it all and pack it as desktop application exe file ?

Just because it's a "web" page doesn't mean it can't run on a client sans-internet.

You simply need a local/lan webserver, no Internet required.

What specifically are you trying to do? If you want to get really simplistic about it, just create a new GUI for your app and share the database the web frontend is using. I did this a few times way back when. Poor maintenance kind of killed it, but it's entirely possible.

PM me if you need direction/governance help.
 
Status
Not open for further replies.