Old code is old. Just thought I would share it since im working on more things.Code:if (Clipboard.ContainsText() == true) { if (Clipboard.GetText() != LastClip) { ClipTxt.Text = ClipTxt.Text + "\r\n" + Clipboard.GetText() + "\r\n"; LastClip = Clipboard.GetText(); } }
Results 1 to 3 of 3
Thread: [C#] Clipboard snippet
- 09 Jan. 2011 07:16pm #1
[C#] Clipboard snippet
- 09 Jan. 2011 07:28pm #2
- 09 Jan. 2011 08:04pm #3
I've realized that since this was posted on another forum long ago. The code is quite old.