Search found 1 match

by John.Orco
Thu Apr 09, 2015 7:56 pm
Forum: User Examples
Topic: Paste from clipboard
Replies: 10
Views: 33978

Re: Paste from clipboard

Personally i use .vbs script . It is another approach, really slower than ruby version, but it does the job!


Set objHTML = CreateObject("htmlfile")
ClipboardText = objHTML.ParentWindow.ClipboardData.GetData("text")

Const ForReading = 1, ForWriting = 2, ForAppending = 8
Dim fso, f
Set ...