hi all
I'm trying to make a script to install silently softwares. usually, "setup.exe" files made with Installshield, create a new process and then quit (the installation process continue to work on background). This behaviour is different when I use the Kixforms instruction "createobject".
here is a sample code:
Run "d:\setup -s"
? "press a key"
get $x
$frmForm = CreateObject("Kixtart.Form")

this works well, the setup is launched and executed in background before I press a key.
If I put this instruction after the "CreateObject" line, it doesn't work. The setup process is blocked until I press a key, it can't create a background process.

is it a bug , or is there something I don't understand ????

thanks for any help