Error C8016
InstallShield 2024 » InstallScript Language Reference
Message
'name' : undefined label:
Description
The identifier specified by name is used in a goto statement to reference a label that has not been defined.
Troubleshooting Information
The error is located in the block directly above the error location. Find the goto statement that references name. If the goto statement is in a program block, it must reference a label that has been defined in the program block. If the goto statement is in a function definition, it must reference a label that has been defined in that function definition. Determine where you want control to flow and define the label at that location.
See Also