> Is there a method to create an .exe once I have my
> application completed so that my customers can just
> run my executable and would not even know they
> are running smalltalk (Of course I would let them know that in the
> application notes :) )?
Sure. For example:
* Rename 'Squeak.exe' to 'MyApp.exe'
* Rename 'Squeak.ini' to 'MyApp.ini'
* Move 'Squeak.image' to 'appdata\MyApp.dat'
* Within MyApp.ini add
[Global]
WindowTitle = My Coolest App
ImageFile = appdata\MyApp.dat
(ImageFile can be relative or absolute, e.g., C:\MyApp\MyApp.dat).
Off you go ;-)
Cheers,
- Andreas