zahidpervaiz
Programmer
I'm loading a "exe file" on click button.
My requirment is that if somebody click on button it must stay on same frame till the whole setup file(exe file) execute and intall on the machine then it must go to the next frame.
How it will be possible???
Code is here.
The code is ok. I just want to stay till "dotnetfx.exe" completely intalled on the machine.
My requirment is that if somebody click on button it must stay on same frame till the whole setup file(exe file) execute and intall on the machine then it must go to the next frame.
How it will be possible???
Code is here.
Code:
on mouseup me
checkForNamesFile
end
on checkForNamesFile
fileThere = baFileExists( "c:\test\za.txt" )
if (fileThere) then
go to frame "1"
else if not(fileThere) then
baopenFile("dotnetfx.exe" , "Normal")
end if
go to frame "2"
end checkForNamesFile