Jump to content

Adlib Wonderings


jbreetz
 Share

Recommended Posts

Does AdLib only have only one instance of itself running at all times?

Let me clarify. If I do this...........

AdlibEnable("Func1()")
;;do some things;;
AdlibEnable("Func2()")
;;do some things;;
AdlibDisable()

will Adlib do Func1 until it hits the "AdlibEnable("Func2()") command then it will stop doing Func1 and start doing Func2 until it reaches the AdlibDisable() command

OR

will Adlib do Func1, then when it hits the "AdlibEnable("Func2()") command it will do Func2 as well (so both Func1 and Func2 are being executed simultaneously) until it reaches the AdlibDisable() command?

What I want to do is have a function that makes the Progress bar scroll continuously from 0% to 100% (like Jon's demo) while installing some stuff, but also check for the WinXP unsigned driver warning. I could put it all in one Func, but would like the "Close the unsigned driver warning" function as seperate since it is Adlibbed in other places.

Thanks.

JB
Link to comment
Share on other sites

  • Administrators

Only one adlib function at once. But there is nothing to stop you doing lots of clever things in your adlib function (or even having it call other functions) to cater for lots of different cases.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...