Reputation: 473
I am creating a custom page in my uninstaller as follows:
UninstPage custom mypageCreate
.....
.....
.....
Function mypageCreate
;call nsDialogs or InstallOptions functions here
FunctionEnd UninstPage custom mypageCreate
But I am getting an error- Error- resolving create-page function "mypageCreate" in uninstall pages. Help..
Upvotes: 2
Views: 1079
Reputation: 7189
I think it must be prefixed with "un." :
UninstPage custom un.mypageCreate
Function un.mypageCreate
...
Upvotes: 3