vun
6th October 2004 03:10 UTC
invalid opcode??
Hi! I have already searched the forum for this and I know that this error is due to an invalid jump statement. But the problem is I do not know which jump statement. I also read the documentation on relative jumps but i still dont get it. I am posting my script below and I hope that someone would reply soon as I only have till friday to finish my installer and this is the very last part. After friday i would be done with my attachment. Thank you!
Comm@nder21
6th October 2004 15:37 UTC
have a look at the lines 322 and 325 of your script:
continue: Pop ${TEMP1}
...
kill: MessageBox MB_OK|MB_ICONSTOP "Sorry! You have exceded the maximum number of tries. Setup will exit now."
won't work.
must be:
continue:
Pop ${TEMP1}
...
kill:
MessageBox MB_OK|MB_ICONSTOP "Sorry! You have exceded the maximum number of tries. Setup will exit now."
vun
7th October 2004 04:15 UTC
Thanks Comm@nder21, my code works fine now. I appreciate your help!