M
Michel
Hello,
In VB.NET 2008, a Do ... Loop, I creates sereral new textboxes. How can I
set the focus on one of them.
My code is:
Do
txtTest = new Textbox
With txtTest
..Name = "Name"
..Text = "Text"
End With
Loop Until ...
I want to set the Focus on a particular textbox. On the other hand, when a
textbox has the focus, I want to be able to recognise it, so I can give it
the focus again at a later time.
Can someone help me?
Many thanks,
Michel
In VB.NET 2008, a Do ... Loop, I creates sereral new textboxes. How can I
set the focus on one of them.
My code is:
Do
txtTest = new Textbox
With txtTest
..Name = "Name"
..Text = "Text"
End With
Loop Until ...
I want to set the Focus on a particular textbox. On the other hand, when a
textbox has the focus, I want to be able to recognise it, so I can give it
the focus again at a later time.
Can someone help me?
Many thanks,
Michel