Input Dialog - multiple choice

Hi,

I’m trying to create a multiple choice for user input, but I can’t get the options to appear. I’ve watched some online tutorials, but they don’t seem to work. I’m guessing it’s because they’re using VB and I’m using C#??

These are the errors I’m getting:

Any help would be really appreciated!

Thanks

Hi @paulparkes ,

As it is mentioned in the Input Options, you would not need to put an Array value instead you would require to put a String separated by colon ; like below :

"Option1;Option2"
1 Like

@paulparkes

You can directly give a string with semi colon separation as specified above

"Option1;Option2"

If you are having a array variable and if you are looking on how to use it then try the below

String.Join(";",arrayvar)

Cheers

In the properties you will also find Options and there you can use regular string array

Hi,

If you want input dialog in below format -
image

try like : {“Option1”,“Option2”}

Basically every option in inverted commas.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.