question about undo

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,
i have a form with some textBoxes in array.
how can i know to which textBox to permit the "undo"
becase when im using the "textBox.canUndo" there is more then one possibility
?? what can i do??

For i = 0 To 9
If arrTextBox1(i).CanUndo = True Then
arrTextBox(i).Undo()
arrTextBox(i).ClearUndo()
Exit For
End If

thanks
 
Strange question. The undo is done on the textbox that is in focus.

What exactly do you have in mind?
 
Back
Top