SOLVED!
Extract Global Variable array into a user selected dropdown list

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-04-26
06:58 AM
- last edited on
‎2021-09-14
09:16 AM
by
Noemi Balogh
‎2021-04-26
06:58 AM
Hi All
I am trying to extract the first row from the GLOB_ISSUE_SCHEME global variable array and list it as a user-selected dropdown list. I know how to use a REQUEST statement to list fonts using FONTNAMES_LIST, or list individually using a VALUES statement, but extracting from an array has me stumped.
Any input much appreciated!
Thanks!
Brendon
I am trying to extract the first row from the GLOB_ISSUE_SCHEME global variable array and list it as a user-selected dropdown list. I know how to use a REQUEST statement to list fonts using FONTNAMES_LIST, or list individually using a VALUES statement, but extracting from an array has me stumped.
Any input much appreciated!
Thanks!
Brendon
Brendon Reid
Archicad Consultant
reidefine.com.au
_____________________________________________________________________
Macbook Pro (16-inch, 2019), 2.3GHz, 64GB RAM | AC24 5004 INT Full (since AC4.1)
Archicad Consultant
_____________________________________________________________________
Macbook Pro (16-inch, 2019), 2.3GHz, 64GB RAM | AC24 5004 INT Full (since AC4.1)
Solved! Go to Solution.
Labels:
- Labels:
-
Library (GDL)
1 ACCEPTED SOLUTION
Accepted Solutions
Solution

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-04-26 10:21 AM
‎2021-04-26
10:21 AM
DIM _issue_vals[] FOR i = 1 TO 7 _issue_vals = GLOB_ISSUE_SCHEME[1] NEXT i VALUES "issue_strings" _issue_vals
Jochen Suehlo . AC12-28 . MAC OSX 14.4 . WIN11
GDL object creation: b-prisma.de
GDL object creation: b-prisma.de
2 REPLIES 2
Solution

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-04-26 10:21 AM
‎2021-04-26
10:21 AM
DIM _issue_vals[] FOR i = 1 TO 7 _issue_vals = GLOB_ISSUE_SCHEME[1] NEXT i VALUES "issue_strings" _issue_vals
Jochen Suehlo . AC12-28 . MAC OSX 14.4 . WIN11
GDL object creation: b-prisma.de
GDL object creation: b-prisma.de

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2021-04-26 12:43 PM