Hints, tips and tricks for newbies
Moderators: Dorian (MJT support), JRL
-
hvdberg
- Junior Coder
- Posts: 39
- Joined: Wed Jul 12, 2006 1:50 pm
- Location: Netherlands
Post
by hvdberg » Tue Aug 22, 2006 1:49 pm
Just downloaded imglib.dll v 1.0.4, (Macro Scheduler v. 8.0.3 ) and I'm trying to get a modal dialogbox to display the version number with this:
Code: Select all
Let>imglibDLL=%SCRIPT_DIR%\imglib.dll
libload>imglibDLL,imglib
libfunc>imglib,version,the_version
mdl>%the_version%
but as
http://www.xs4all.nl/~hberg/macsched/debug.jpg
shows, the version function call fails. Got a feeling that I'm forgetting sth very simple. Who can enlighten me?
I verified that imglib.dll is in the %SCRIPT_DIR% directory.
adTHANKSvance
Henk
-
Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
-
Contact:
Post
by Marcus Tettmar » Tue Aug 22, 2006 2:17 pm
Should be:
Let>imglibDLL=%SCRIPT_DIR%\imglib.dll
libload>imglibDLL,imglib
libfunc>imglib,Version,the_version,0
mdl>%the_version%