Hello,
I have this form:

And when it opens, I want to set focus(have cursor) in Business Unit Edit field. How can I do that? I search thru Properties in Form Designer, but didn't find any property to change this.
So I tried to set Initial Command on Form to fire Event

In Event Handler call Form Script

And in script just this code, but it doesn't work.
public void SelectEdit()
{
ThisForm.SetFocus("edit1_BU");
}
Please how can I setup that?