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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top