Prompt method

Hi,I’ve got a question regarding the prompt method.

If the length of the array “uniqueItems” is 1114 the prompt method works fine displaying all the value in the array.

If the length of the array “uniqueItems” is 1360, the prompt won’t appear.

Why??


response = ws.Prompt(PROMPT_OKCANCELLIST, “Please Select An Item”,title$, uniqueItems(0),uniqueItems)


Any help would be greatly appreciated.

Thanks in advance.

Meng Chey

Subject: Prompt method

It’s not the length of the array – it’s the total amount of data the array represents. The prompt is not a bottomless pit – it has a limit.

Subject: Which is probably 32K characters.

Subject: RE: Prompt method

Is there a way around this?

I want to be able to display everything.

Is it possible?

Thanks.

Subject: Use a view and Picklist…

picklist = workspace.PickListStrings(PICKLIST_CUSTOM, False, _
“server/domain”, _
“Filepath”, _
“view”, _
“TitleBar”, _
“Please select an item.”, _
4) 'Column Number to return