| | |
Using cut, copy and paste in textbox
Please support our VB.NET advertiser: Intel Parallel Studio Home
Thread Solved |
Hi...
Like Sawamura said using clipboard
Try this following procedure, u can call in any event :
Like Sawamura said using clipboard
Try this following procedure, u can call in any event :
vb/net Syntax (Toggle Plain Text)
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
Never tried = Never Know
So, Please do something before post your thread.
* PM Asking will be ignored *
So, Please do something before post your thread.
* PM Asking will be ignored *
•
•
•
•
Hi...
Like Sawamura said using clipboard
Try this following procedure, u can call in any event :
vb/net Syntax (Toggle Plain Text)
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
Nice to help
Never tried = Never Know
So, Please do something before post your thread.
* PM Asking will be ignored *
So, Please do something before post your thread.
* PM Asking will be ignored *
![]() |
Similar Threads
- How to inser (anyting I print) to the textbox (TKinter) ?try but it hang? pleas help (Python)
- try to browsing directory using TKinter but give error please help (Python)
- how to disable Copy/Cut/Paste on a textbox? (Python)
- Help... (JavaScript / DHTML / AJAX)
Other Threads in the VB.NET Forum
| Thread Tools | Search this Thread |
"crystal .net .net2005 2008 access add advanced application array assignment basic beginner box button buttons center click client code combo convert cpu data database datagrid datagridview designer dissertation dissertations dissertationthesis dosconsolevb.net editvb.net employees excel exists firewall forms html image images isnumericfuntioncall listview login map math memory mobile module msaccess mssqlbackend mysql navigate net number opacity pan picturebox picturebox2 port print printpreview record regex reports" reuse right-to-left save savedialog search serial socket sorting sql sqldatbase sqlserver storedprocedure string temp textbox timer txttoxmlconverter upload useraccounts usercontol usercontrol vb vb.net vb.nettoolboxvisualbasic2008sidebar vba vbnet vista visual visualbasic visualbasic.net visualstudio.net web winsock wpf wrapingcode xml






