NSIS/Contrib/ShowWin/ShowWin.nsi
joostverburg 6b35c69578 *** empty log message ***
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1086 212acab6-be3b-0410-9dea-997c60f758d6
2002-09-20 20:49:09 +00:00

21 lines
No EOL
414 B
NSIS

;ShowWin Example
Name "ShowWin Example"
OutFile "ShowWin.exe"
LicenseText "Hide Richedit Control and disable the cancel button."
LicenseData "ShowWin.txt"
Section ""
SectionEnd
Function .onInitDialog
;hide richedit control
FindWindow $R1 "#32770" "" $HWNDPARENT
GetDlgItem $R1 $R1 1000
ShowWin::Hide $R1
;disable the 'I Agree' button
GetDlgItem $R1 $HWNDPARENT 1
ShowWin::Disable $R1
FunctionEnd