.

Share your advanced PureBasic knowledge/code with the community.
dell_jockey
Enthusiast
Enthusiast
Posts: 767
Joined: Sat Jan 24, 2004 6:56 pm

.

Post by dell_jockey »

to be updated
Last edited by dell_jockey on Sat Aug 15, 2009 2:35 pm, edited 7 times in total.
cheers,
dell_jockey
________
http://blog.forex-trading-ideas.com
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Re: Porting a fluids function library....

Post by PB »

Code: Select all

Macro DoubleQuote
    "
EndMacro
Just a tip: PureBasic has a constant called #DOUBLEQUOTE$ which you can
use, instead of defining a macro for it.
dell_jockey
Enthusiast
Enthusiast
Posts: 767
Joined: Sat Jan 24, 2004 6:56 pm

Re: Porting a fluids function library....

Post by dell_jockey »

PB wrote:

Code: Select all

Macro DoubleQuote
    "
EndMacro
Just a tip: PureBasic has a constant called #DOUBLEQUOTE$ which you can
use, instead of defining a macro for it.
Yes, so I thought as well. Then I had a lot of trouble to concatenate this with 'expression', see the macro code above. Perhaps it's the double hash '##' thing that results from it, I don't know.
Instead of putting much more time in it, I decided to use and adapt the snippet from the help file.
cheers,
dell_jockey
________
http://blog.forex-trading-ideas.com
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Re: Porting a fluids function library....

Post by PB »

> Perhaps it's the double hash '##' thing that results from it

Good point, I didn't see that.
Post Reply