Error C8037

InstallShield 2019 ยป InstallScript Language Reference

Message

'text' : variable required

Description

The constant, literal value or structure member specified by text is being passed as an argument in a parameter position that requires a variable.

Troubleshooting Information

Declare a variable of the type required for the parameter; assign the constant or literal value to that variable; then pass the variable instead of the constant or literal value.

InstallShield does not allow a structure member to be passed by reference. Declare a variable of the same type as the structure member; assign the value of the structure member to the new variable; then pass the variable instead. When the function returns, assign the value of variable to the structure member.

See Also