|
|
#1 |
|
Major Dude
Join Date: May 2003
Posts: 681
|
how to Sendmessage to Checkbox?
i need to change the state of a checkbox on "NOTIFY" but i cant find the right Sendmessage - pls help.
ps. do i need winmessages.nsh? Greets, Brummelchen |
|
|
|
|
|
#2 |
|
Moderator
Join Date: Nov 2002
Location: Surrey, England
Posts: 8,434
|
|
|
|
|
|
|
#3 |
|
Major Dude
Join Date: May 2003
Posts: 681
|
Works, thx
SendMessage $1 ${BM_SETCHECK} 0 "0" <-- off SendMessage $1 ${BM_SETCHECK} 1 "0" <-- on Greets, Brummelchen |
|
|
|
|
|
#4 |
|
Major Dude
Join Date: May 2003
Posts: 681
|
erm, additional - how to with "Flags=" ?
ok, i think it is solved with example "testnotify.nsi" Greets, Brummelchen Last edited by Brummelchen; 10th July 2006 at 16:34. |
|
|
|
|
|
#5 |
|
Major Dude
Join Date: May 2003
Posts: 681
|
Another problem - i need to send a path-variable to IO
[Field 1] Type=DirRequest Left=92 Right=280 Top=75 Bottom=88 State= <-- send here Flags=PATH_MUST_EXIST|DISABLED which command is it? BTW it is part of a leave-function PHP Code:
Greets, Brummelchen |
|
|
|
|
|
#6 |
|
Moderator
Join Date: Nov 2002
Location: Surrey, England
Posts: 8,434
|
Use ${WM_SETTEXT} on the text box.
-Stu |
|
|
|
|
|
#7 |
|
Major Dude
Join Date: May 2003
Posts: 681
|
thank you much
SendMessage $1 ${WM_SETTEXT} 0 "STR:$MOZDIR4" is there any help to get the right command? it is not really clear to me, why WM and not EM or BM
Greets, Brummelchen |
|
|
|
|
|
#8 |
|
Moderator
Join Date: Nov 2002
Location: Surrey, England
Posts: 8,434
|
WM = Windows Message (i.e. for general windows and controls)
BM = Button Message and so on. Use MSDN if you need information about the messages (just use Google). -Stu |
|
|
|
![]() |
|
|||||||
| Thread Tools | Search this Thread |
| Display Modes | |
|
|