Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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