W
Warrio
Hello!
Is it possible to write in a textbox without giving it first the focus?
because if I write directly:
Textbox.Text = "Hello"
an error msg says that You cannot reference a field that hasn't the focus
and if try to change its value by writing
Textbox.Value = "hello" or
Textbox = "Hello" this changes nothing, the text displayed will never
have the text "hello"
so what I do is this:
Textbox.SetFocus
Textbox.Text = "Hello"
but is there a way to change the text without giving setting or changing the
focus?
Thanks for any suggestion
Is it possible to write in a textbox without giving it first the focus?
because if I write directly:
Textbox.Text = "Hello"
an error msg says that You cannot reference a field that hasn't the focus
and if try to change its value by writing
Textbox.Value = "hello" or
Textbox = "Hello" this changes nothing, the text displayed will never
have the text "hello"
so what I do is this:
Textbox.SetFocus
Textbox.Text = "Hello"
but is there a way to change the text without giving setting or changing the
focus?
Thanks for any suggestion