Page 6 of 15
Posted: Wed Dec 31, 2003 2:37 am
by El_Choni
Good to know, thanks. Small tip for varargs (I'm not sure if it works ok right now, can't test it):
Code: Select all
ProcedureDLL MyBox(message$) ; this is MY box, don't touch it!
ProcedureReturn MessageRequester("MyBox", message$)
EndProcedure
ProcedureDLL MyBox2(message$, Title$)
ProcedureReturn MessageRequester(Title$, message$)
EndProcedure
Thanks for testing it. Regards,
Posted: Wed Dec 31, 2003 3:38 am
by fsw
Tested similar stuff today and it didn't work out.
Your tool seemed to work fine, well at least without error message.
But while using both variants in one code PureBasic said "false amount of parameters" - for the second command call (with 2 parameters instead of 1).
Also tested a simple code from the codearchiv, a simple window with windows api and it didn't work.
Something like: "no reference for sys_memory_string" or similar came up.
But over all, for a early beta it's really
Thanks for such a tool.
Posted: Fri Jan 02, 2004 3:53 pm
by Polo
OK, I post just to make you remember to put the array support in Tailbite

Posted: Fri Jan 02, 2004 7:23 pm
by Num3
Will a PB Lib, that only uses PB commands in it work under Linux !?

Posted: Fri Jan 02, 2004 7:50 pm
by El_Choni
I don't think so (unless you compile it in Linux)
Posted: Sun Jan 04, 2004 11:03 am
by Polo
Is the array done now, we are January 4th
No, seriously, you can take your time, I'm just impatient

Posted: Sun Jan 04, 2004 1:18 pm
by El_Choni
I got flu, I can hardly type, just wait a bit, please.
Posted: Sun Jan 04, 2004 5:08 pm
by Polo

I can't wait for an update, array are really important for me
If you can allow
Global array.l
for example, it would be great !
Posted: Mon Jan 05, 2004 12:52 am
by El_Choni
Well, you can do one, or various, of these things: a) Play with the TailBite source code, which is included in the installer (extract from TailBite Manager); b) Wait until I get better and return home, not before Thursday; c) Keep saying you can't wait.
All three are ok for me. Have a nice day,
PS: arrays are always global. You can already use global variables, IIRC.
Posted: Mon Jan 05, 2004 3:35 am
by Karbon
I did up this through tailbite :
http://www.reelmediaproductions.com/pb/ ... Decode.zip
And it *seemed* to work well until I tried to call the function and got a "Base64Decoder is not a function" compiler error... I restarted the compiler and made sure the lib was in the right place...
Awesome tool!!!
Posted: Mon Jan 05, 2004 1:23 pm
by El_Choni
And it *seemed* to work well until I tried to call the function
So, it seemed to work well until you actually tried to use it
I'll check this when I'm back home, on Thursday. I'm better now.
Regards,
PS: functions exported from the lib must be ProcedureDLL, functions used only by the lib, Procedure. Check this, please.
Posted: Mon Jan 05, 2004 2:54 pm
by Karbon
Doh!
I had changed that when I was playing with the source and forgot to change it back!
It works well now! Thanks!
Posted: Wed Jan 07, 2004 4:58 pm
by Polo
err, just to say that Global variables do NOT work

Posted: Thu Jan 08, 2004 6:19 pm
by El_Choni
Funny, they used to work since the very first build. I´ll fix that also when I´m home (tonight, promised).
Posted: Fri Jan 09, 2004 6:26 pm
by Justin
Hi, i tried your tool with the test lib included and i got the same error someone reported at the beginning, Error line 16777215 i hope you can fix it for the next version.