Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
how can I get the selected Items from a Listbox in a VisualBasic Script. By the way, does anybody know about the existence of a good QlikView VisualBasic API??
Hi
use getselectedvalue()
-Sathish
Hi use this macro
sub gETsELECTEDvALUE
set doc1 = ActiveDocument
set mySelections1 = doc1.fields("FieldName").GetSelectedValues
for i = 0 to mySelections1.Count - 1
set v1 = ActiveDocument.Variables("gETsELECTEDvALUE")
v1.SetContent mySelections1.Item(i).text,true
next
end sub
i think it ll help for u
-Sathish
can I access the ListBox also by title/caption??
Title caption means? u want title name or u want to display in title caption?
-Sathish
doc.GetSheetObject("Id") is the solution what I was looking for...
Your previous solution worked, thanks.
Dou you have any suggestion for an API for visualbasic in QlikView or can you tell me you you are looking for methods?? It would be really helpful.