| | |
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 |
Tag cloud for VB.NET
.net .net2008 2008 access add advanced application array basic beginner browser button buttons center click client code combo convert cpu cuesent data database datagrid datagridview datetimepicker designer dissertation dissertations dissertationtopic eclipse employees excel exists filter forms function html images lib listview map mobile module msaccess mysql net number open page pan panel pdf picturebox picturebox2 port position print printing printpreview problem read regex reuse right-to-left save search serial settings shutdown socket sorting sqldatbase sqlserver storedprocedure textbox timer timespan transparency txttoxmlconverter usercontol vb vb.net vb2008 vba vbnet vista visual visualbasic visualbasic.net visualstudio.net visualstudio2008 web webbrowser winforms winsock wpf wrapingcode xml year






