I have created custom page using following code.
Function custom
nsDialogs::Create /NOUNLOAD 1018
Pop $Dialog
${If} $Dialog == error
Abort
${EndIf}
DetailPrint "Test"
nsDialogs::Show
FunctionEnd
I want to write some text into that custom page.How to do this?
How to write text into custom page?
5 posts
Use a label (NSD_CreateLabel).
Thanks.great.Its working.Text has been added successfully.Now i want to customize that text like font,style and etc..Is it possible? sorry i'm new to NSIS script.
Thanks MSG.I got it.working fine.