Archive: How to write text into custom page?


How to write text into custom page?
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?


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.


I googled for 'nsdialogs font', and the first hit gave me this:
http://stackoverflow.com/questions/5...nsis-installer

(My point is, it often helps a lot to google. Google is your friend.)


Thanks MSG.I got it.working fine.