hi masters..
How to code the Copy, Cut and Paste functionality in VB 6.0 ?

Recommended Answers

All 3 Replies

Try the following codes:


Copy

Clipboard.Clear
Clipboard.SetText ActiveForm.ActiveControl.SelText, vbCFText

Cut

Clipboard.Clear
Clipboard.SetText ActiveForm.ActiveControl.SelText, vbCFText
ActiveForm.ActiveControl.SelText = ""

Paste

If Clipboard.GetFormat(vbCFText) Then
ActiveForm.ActiveControl.SelText = Clipboard.GetText(vbCFText)
End If
commented: Nicely executed. +6
commented: its done..thx :) +4

Thx Jx_man for quick response..its done..

Now you just have to mark this as solved, found at the bottom of this page, thanks:)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.