I have a textbox on dialog form, I want to default focus on it once form load, but for some reason, it does not happen.
I have tried: Focus and form_load event and put focus method right after initialization of form.
I have a textbox on dialog form, I want to default focus on it
Share
You may call
Control.Focus()method in Dialog Form’sActivatedevent handler or set Tab Index order or useSelect()method.