Hi,
I am working in vb.net and using NetAdvantage 2007 vol3.I would like to set focus on ultra tool bar tools using tab control.Is it possible?I tried placing ultra text editor in a control container tool and setting focus on it through code but that didn't work when i wrote it on form load.Any guidance will be highly appreciated.
Thanks in advance,
Prerna
It is possible something on the Form is taking focus after the Load event is fired. Try setting focus in the Shown event of the Form, which occurs after the Load. You can also try to simulate the Alt key being pressed with the SendKeys class. This will put keyboard focus in the first tool.
thanks.. I set the focus from the Shown event and it worked.How ever i couldn't make it work through the other method.