Label "Please wait" in leaveFunction
hi
1.
im a custom page after user click on nextbutton
i install some components.
after installation comes next page automatically.
installation takes some time.
I put a label in customPageLeaveFunction
customPageLeaveFunction{
Label.Text = "please wait"
...
Sleep 1000
Label.Text = ""
}
it doesn't work

in the case of customPageLeaveFunction:
customPageLeaveFunction{
Label.Text = "please wait"
...
}
Label.Text is "please wait" only after user click on nextbutton and then backbutton.
how can I reach that?

how can I disable 3 buttons for this time
and then enable them?


2. I don't understand it:
GetDlgItem $0 $HWNDPARENT 1
EnableWindow $0 0
Sleep 1000
EnableWindow $0 1

if I put not 1 but somethin other as last parameter of GetDlgItem, it has no effect.

Thanks.