RE;.0 -< How do you make return work on buttons. >-
>How does the little outline appear on a push button. For example the Page
>button in NOTES. Is it the button_accelerator switch. If so how is it used.
Use the default button resource to tell the dialog box which child gets the
activation on <CR>. (You can also tell the dialog box which button gets the
<Shift><CR> using the cancel button resource.) In uil:
... dialog_box
{
arguments
{
default_button = push_button Ok_Btn;
cancel_button = push_button cancel_Btn;
};
controls
{
push_button Ok_Btn;
push_button cancel_Btn;
};
...
|