I have a question.
example I have a function page
Function PageLeaveHere's how it goes
## Pop password & username from stack
Pop $R0
Pop $R1
## Get MD5 string for username
MD5DLL::GetMD5String $R0
Pop $R0
## Get MD5 string for password
MD5DLL::GetMD5String $R1
Pop $R1
## A bit of validation
StrCmp $R0 '${Username1MD5}' 0 +2
StrCmp $R1 '${Password1MD5}' Good Bad
StrCmp $R0 '${Username3MD5}' 0 +2
StrCmp $R1 '${Password3MD5}' Die Bad
Bad:
IntOp $R3 $R3 + 1
MessageBox MB_OK|MB_ICONEXCLAMATION "blah blah blah"
StrCmp $R3 2 +2
Abort
Quit
Good:
Goto Test
Die:
Goto Destroy
FunctionEnd
Die:
Goto Destroy
The Destroy is actually in another sections which means I have a main and a secondary.
In the main section, I have Test:
In the secondary section, I have Destory:
How can I make the Function to obey or recongise my label ?
Die:
Goto Destroy
Which will actually know that I have a secondary section, and have Destory: in it ??
I asking this because I got this error
Error: could not resolve label "Destroy" in function "passwordPageLeave"
Error - aborting creation process