Pia
Pia

Reputation: 473

Adding custom pages to uninstaller

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

Answers (1)

Sergey Podobry
Sergey Podobry

Reputation: 7189

I think it must be prefixed with "un." :

UninstPage custom un.mypageCreate
Function un.mypageCreate
...

Upvotes: 3

Related Questions