Hallo!
Ich habe folgenden Code:
_________________________________________
For i = 0 To My.Application.OpenForms.Count - 1
If My.Application.OpenForms.Item(i).ContainsFocus Then
If TypeOf (My.Application.OpenForms.Item(i).ActiveControl) Is TextBox Then ’ wenn es sich um eine TextBox handelt, was fokussiert ist, dann Text markieren
'Was muss ich machen, damit ich nun von der Textbox den Text markieren will?
End If
End If
Next
_________________________________
Meine Frage steht als Kommentar schon drin . Wie kann ich von der Textbox dann den Text markieren, denn das SelectAll mir nicht zur Verfügung.
Danke im Voraus für eure Hilfe