I'm brand new to PB (used to BB!) and so I'm trying to get a handle on all this extra functionality

Cheers,
-SurreaL
Code: Select all
Declare Test()
MyFunc.l = @Test()
Call (*MyFunc ())
MessageRequester("Information","Yup.",#PB_MessageRequester_Ok)
Procedure Test()
a.l
a = a + 1
EndProcedure
Code: Select all
Procedure thefunc(title.s, msg.s)
MessageRequester(title, msg, #NULL)
EndProcedure
thefuncpointer = @thefunc()
CallFunctionFast(thefuncpointer, "hello i'm a title", "hello i'm the message")