Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can I display the content of a file or clipboard in qlikview?

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?

2 Replies
bindu_apte
Creator III
Creator III

Not applicable
Author

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