hi...
you have try this coding...
Private Sub Cut()
If Me.Textbox1.Text.Length > 0 Then
Clipboard.SetDataObject(Me.Textbox1.SelectedText)
Me.Textbox1.Cut()
End If
End Sub
Private Sub Copy()
If Me.Textbox1.Text.Length > 0 Then
Me.Textbox1.Copy()
End If
End Sub
Private Sub Paste()
If Clipboard.GetDataObject.GetDataPresent(DataFormats.Text) Then
Me.Textbox1.Paste()
End If
End Sub
Private sub undo()
me.Textbox1.undo()
end sub
On Fri, Mar 6, 2009 at 5:55 PM, Lic. Vega <[email protected]> wrote:
>
> Hi everyone. I'm New in this group and I hope can help me.
>
> I'm developing a Windows Application and I need to do an Edit menu in
> Windows Forms (Cut, Copy, Paste, Undo, ReDo, etc),and i don't know how
> to do exactly.
>
> If anyone can help, will thank you endlessly.
>
> Thanks.
>
--
R.Ram Mohan