views:

97

answers:

1

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 funtion "mypageCreate" in uninstall pages. Help..

+2  A: 

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

UninstPage custom un.mypageCreate
Function un.mypageCreate
...
Sergius
Ya its working....Thnx.
Pia