Search found 29 matches

by Tension
Thu Apr 07, 2005 1:24 am
Forum: Off Topic
Topic: Realbasic v5.5 SE for free
Replies: 47
Views: 14095

LuCiFeR[SD] wrote:good job that we mostly perform Safe Hex then ;)
ROFL
by Tension
Wed Apr 06, 2005 7:59 am
Forum: Coding Questions
Topic: Access ODBC Driver questions
Replies: 4
Views: 1562

the.weavster wrote:it is another quote. e.g. 'don''t respond'Weave
"To quote a guy a I asked on this: ""yep""" :)
by Tension
Mon Apr 04, 2005 2:42 pm
Forum: Announcement
Topic: PlanetSquires - Cheetah DataBase is now FREEWARE
Replies: 22
Views: 10231

Thank you for the info.
by Tension
Mon Apr 04, 2005 2:00 pm
Forum: Coding Questions
Topic: Access ODBC Driver questions
Replies: 4
Views: 1562

Hi the.weavster,

Regarding transactions, I think it can be done, here's a link to a site with some VB code using access/transaction server.

http://www.softlookup.com/tutorial/data_vb/ch17.asp#Heading20

Also aXend did some useful preliminary work that may help you with this vis purebasic (he uses ...
by Tension
Sat Apr 02, 2005 1:19 pm
Forum: Feature Requests and Wishlists
Topic: An Obj module approach
Replies: 19
Views: 5009

Thank you. I'll look at that.

Do you have any plans to allow linking .obj and etc files "as is" in the compile process?

Thanks.
by Tension
Wed Mar 30, 2005 4:25 am
Forum: Tricks 'n' Tips
Topic: Macros !!!!!
Replies: 36
Views: 11247

lol!

At least you have a label. I'm still an undefined reference.
by Tension
Wed Mar 30, 2005 4:07 am
Forum: Feature Requests and Wishlists
Topic: An Obj module approach
Replies: 19
Views: 5009

Hi fsw,

Thanks for the response. :)

Actually what I am wishing for re libraries is:

Those in purelibraries/userlibraries treated as is, that is they remain as a sort of extension of the language.

But also libraries outside of that area that must be specifically referenced in code, a directive ...
by Tension
Wed Mar 30, 2005 2:20 am
Forum: Tricks 'n' Tips
Topic: Macros !!!!!
Replies: 36
Views: 11247

@DoubleDutch

Yes! Thanks!

And this would be probably remain valid for as long as PuerBasic uses fasm.
by Tension
Wed Mar 30, 2005 12:03 am
Forum: Feature Requests and Wishlists
Topic: An Obj module approach
Replies: 19
Views: 5009

I'm not sure, but if think what Tension wants to make is not creating .obj or .lib with Purebasic (even if that would be a cool feature !!), but he wants to include .obj or .lib in a Purebasic project without having to do that with the PurebasicLibraries
I thought Tension was talking about using ...
by Tension
Tue Mar 29, 2005 4:16 pm
Forum: Off Topic
Topic: Realbasic v5.5 SE for free
Replies: 47
Views: 14095

Karbon wrote:Best tool for the job, guys. Don't waste any time being a zealot for this language or that.

..

Good marketing for RB, IMHO.
Agree and agree. Good point and good assessment. :)
by Tension
Tue Mar 29, 2005 4:15 pm
Forum: Feature Requests and Wishlists
Topic: An Obj module approach
Replies: 19
Views: 5009

Hi fsw,

Thanks for the response, although I am not sure I fully understand the issues.

If you or I create an obj file for inclusion into our PureBasic programs, how does that jeapordise PureBasic?

PureBasic can already recognise libs created via tailbite, or through the manipulation of .obj, so ...
by Tension
Sat Mar 26, 2005 4:00 pm
Forum: Feature Requests and Wishlists
Topic: An Obj module approach
Replies: 19
Views: 5009

An Obj module approach

Would it be possible for version 4 to support another library approach, using .obj files and then linking them in.

People could create an .obj as a library.

Programs could have a directive up top like:
CompilerModule "myPath/myLib"
and link in myLib.obj.

Is this feasible? Likely? Pipedream?

It ...
by Tension
Sat Mar 26, 2005 3:39 pm
Forum: General Discussion
Topic: GOSUB instead PROCEDURE barrier ?
Replies: 16
Views: 3261

I'm not sure how fast PB's Select statement is,
but it is a pretty fast way to do conditional code.
alternatively one could use if, elseif/else, endif.
Last time I checked this (pre 3.93) If .. elseif outperformed select . But it was some time and some updates ago.

The idea of using structures is ...
by Tension
Sat Mar 26, 2005 3:19 pm
Forum: General Discussion
Topic: GOSUB instead PROCEDURE barrier ?
Replies: 16
Views: 3261

Hmm, Tension. Isn't that exactly the same as normally using a procedure? I'm not sure (ask Fred) but I believe that once compiled a PB program actually uses CallFast internally :P
You could be right.

Worth a shot though. Then at least Ralf will have the satisfaction of knowing he tried everything ...
by Tension
Sat Mar 26, 2005 3:07 pm
Forum: General Discussion
Topic: GOSUB instead PROCEDURE barrier ?
Replies: 16
Views: 3261

Ralf,

Perhaps CallFunctionFast would give some improvement of speed, something like:

Procedure myB( .... )
..
EndProcedure

global myBaddr

myBaddr=@myB()

Procedure myFuncA( .. )
..
CallFunctionFast(myBaddr, ...)
EndProcedure

etc
Forgive typos - also check the manual as I just typed this in ...