Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm new to qlikview and want to display the content of a file or clipboard in a textbox or something dynamically, how can I do it?
Hi Yihan,
You can show cliboard content on in clipboard mode only.
I found something like below, hope it will help you.
sub Clip
Set ClipBoard = CreateObject("WScript.Shell")
Set ListBox = ActiveDocument.GetSheetObject("LB01")
ListBox.ShowSearchDialog 0
ClipBoard.SendKeys "^V"
end sub
Thanks
Nitin