Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Sun Jun 30, 2002 12:23 am Post subject: |
|
|
VDS will not do this (would be nice though...).
I'm not exactly sure what you're trying to accomplish, but
you can probably use a list with the %%name and %%id
vars separated into fields. Then use @match() to find the
appropriate info.
| Code: |
LIST CREATE, 1
rem -- Add name, ID, and data (more if needed) --
LIST LOADTEXT, 1,
"Joe|1|test1
"Joe|2|test2
"Joe|3|test3
if @match(1, "Joe|2")
PARSE ";;%%data", @item(1)
INFO %%data
end
|
If you can't get something like this to work, give us a
few more details about what you're trying to do.
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|