
Getting a VBapp1.exe to create VBapp2.exe
vb is probably the worst language you could pick to write any kind of
compiler with. you can do it, but this kind of things more suited to c or
assembly.
what you can do is edit the compiled exe by reading it in in binary and
changin certain values. open your exe in a hex editor, you'll see that you
can easily edit names+captions of labels and such.
your other option is to use a textfile. user changes values in the file via
your app. and then you give him the static exe and the textfile.
Pete
Quote:
> Is it possible to create a VB1.exe application as a
> distributed software that will accept parameters from a
> form, then create a new executable such as VB2.exe at the
> push of a button ?
> Please give some hints.
> Or should I choose another software to create my software?
> Thanks in advance for your help.