
compile error "invalid procedure call or argument
Hello,
Quote:
> I try to set the focus in the text field, but it has the
> compile error "invalid procedure call or argument." Any ideas??
You must show the form before setting the focus to a control:
\\\
Private Sub Form_Load()
Call Me.Show
Call Me.Text2.SetFocus
End Sub
///
Regards,
Herfried K. Wagner