Skip to main content

Use of Clipboard

  • November 25, 2015
  • 2 replies
  • 0 views

Hello again,

how can I use clipboard in VC?

2 replies

Lanter Werner
  • Participating Frequently
  • November 25, 2015

Hello again,

how can I use clipboard in VC?

Generally you can call any .Net function. An example:

          invoke   type System.Windows.Clipboard::SetDataObject(type DateTime::Now::ToLongTimeString()). *> Copy Time to Clipboard

          declare  ClipboardValue as string.

          set      ClipboardValue to "Time in Clipboard is " & type System.Windows.Clipboard::GetText(). *> Get Text from Clipboard


Hello again,

how can I use clipboard in VC?

thanx again :-)