PDA

View Full Version : wizard dialog



Unregistered
09-26-2012, 03:08 AM
hello,
i create a custom dialog wizard
how can i hide the bottom buttons?

(finish, cancel)

linder
09-26-2012, 03:22 AM
Hello,

You can use the "Wizard:Set Control Properties..." function.

Hide ControlID "$CANCEL_BUTTON$"

Does this help?

Friedrich

Unregistered
09-26-2012, 03:28 AM
You can use the "Wizard:Set Control Properties..." function.

Hide ControlID "$CANCEL_BUTTON$"

Does this help?

Friedrich


thanks !
1.) how can i hide the "finish" button?
2.) how can i resize (the height and width) of this dialog?

linder
09-26-2012, 06:59 AM
Hello,

The "Next" and the "Finish" buttos have the same control ID. So you can use:

Hide ControlID "$NEXT_BUTTON$"

You can't resize installer wizard controls. They have a fixed (industry-standard) size.

Friedrich