Input box in catia script
Input box in catia script
(OP)
Hi Guys,
I'm struggling with an input box problem.
The box works ok but I would like to list the input options in text below the input line.
ie.
Enter option: ___________
1. Red
2. Black
3. Blue
Can this be done in V5 script?
any help (as always) would be appreciated
bets regards
Alan
I'm struggling with an input box problem.
The box works ok but I would like to list the input options in text below the input line.
ie.
Enter option: ___________
1. Red
2. Black
3. Blue
Can this be done in V5 script?
any help (as always) would be appreciated
bets regards
Alan





RE: Input box in catia script
does this help?
RE: Input box in catia script
You can ref this sample code
InputBox "Enter option:__________" & vbNewLine & "1. Red" & vbNewLine & "2. Black" & vbNewLine & "3. Blue", "Input dialog", vbInformation
Engjoy guy!
RE: Input box in catia script
Really appreciated.
Regards
Alan