Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I'm sure what you're asking could be achieved, but I'm also sure that nobody is going to write a complete solution for you just because you're new to programming. That's not how the world works.</p> <p>It sounds like you want to write your software in HTML/JavaScript, but distribute it like a standalone program. This could theoretically be achieved with some kind of extracting program, where the executable would be bundled with all the HTML and JavaScript source code. The executable would read the files from within itself, save them temporarily elsewhere, and then invoke the system's default browser to open an index file. Then the temp files could be cleaned up when the program exited.</p> <p>This should be relatively simple to do with vb6, although I have not programmed in vb6 for quite some time.</p> <p>That being said, however, this is, in every way, a bad idea. First, vb6 is an outdated technology and is no longer supported. Second, you're adapting all of the shortcomings of a web application, and not taking advantage of any of the benefits, AND making your life harder by writing extra standalone code that won't work in many places. So you've taken a web application and made it less portable, where web applications are supposed to excel at portability; and you're still going to have to deal with the fact that it's <em>still a web application</em> no matter which way you build it -- your GUI will be harder to develop and be less rich than a desktop application, you'll have to deal with supporting multiple browsers, it'll be more painful to try and work with the machine the app is running on, <strong>AND</strong> you still won't be protecting your JavaScript, since there's <em>no way to completely protect your JavaScript</em>.</p> <p>My suggestion to you is to learn VB.Net rather than VB6 and develop an <em>actual</em> desktop application, or (if your application is more comfortable on the web) just develop a web application, put it on the web, and let users load it with their web browsers.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload