Message 1 of 5
Input box - Multiple inputs

Not applicable
01-15-2015
02:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hey there
Is it possible to make an inputbox via ilogic where I can change multiple values at once?
I want to fill in my drawing header, and I want to enter it manually
My code this far looks like this:
EmneThing = iProperties.Value("Project", "Description") iProperties.Value("Project", "Description") = InputBox("Emne", "Emne", EmneThing) While iProperties.Value("Project", "Description") = "" iProperties.Value("Project", "Description") = InputBox("Emne", "Emne", EmneThing) End While DelAfThing = iProperties.Value("Summary", "Subject") iProperties.Value("Summary", "Subject") = InputBox("Del af", "Del af", DelAfThing) While iProperties.Value("Summary", "Subject") = "" iProperties.Value("Summary", "Subject") = InputBox("Del af", "Del af", DelAfThing) End While RevisionThing = iProperties.Value("Project", "Revision Number") iProperties.Value("Project", "Revision number") = InputBox("Revision", "Revision", RevisionThing) While iProperties.Value("Project", "Revision Number") = "" iProperties.Value("Project", "Revision number") = InputBox("Revision", "Revision", RevisionThing) End While GodkendtThing = iProperties.Value ("Project", "Authority") iProperties.Value("Project", "Authority") = InputBox("Godkendt af", "Godkendt af", GodkendtThing) While iProperties.Value("Project", "Authority") = "" iProperties.Value("Project", "Authority") = InputBox("Godkendt af", "Godkendt af", GodkendtThing) End While InventorVb.DocumentUpdate()
It causes four boxes in a row, whereas I would prefer one - If possible