Something I don't get

Everything else that doesn't fall into one of the other PB categories.
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Something I don't get

Post by Polo »

In PB3.94 I was going that :
lib=OpenLibrary......
function=IsFunction(lib,"myfunction")
callfunctionfast(function,.....)
How do I do that now in v4 ?
Fred
Administrator
Administrator
Posts: 18351
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Post by Fred »

Just replace IsFunction() with GetFunction() and it should work ;).
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

Fred wrote:Just replace IsFunction() with GetFunction() and it should work ;).
Ok, thanks ;)
BTW, my LinkedList doesn't seem to be globals anymore, how do I put them global ?
Kale
PureBasic Expert
PureBasic Expert
Posts: 3000
Joined: Fri Apr 25, 2003 6:03 pm
Location: Lincoln, UK
Contact:

Post by Kale »

Polo wrote:
Fred wrote:Just replace IsFunction() with GetFunction() and it should work ;).
Ok, thanks ;)
BTW, my LinkedList doesn't seem to be globals anymore, how do I put them global ?

Code: Select all

Global Newlist List.l()
--Kale

Image
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

:oops:
Thanks !
I really miss the help ;)
Post Reply