Search found 3 matches

by Morlet Eric
Thu Aug 14, 2008 8:10 pm
Forum: Linux
Topic: [Tutorial/HowTo] Install PureBasic 4.01 on Ubuntu Linux
Replies: 54
Views: 184005

Re: [Tutorial/HowTo] Install PureBasic 4.01 on Ubuntu Linux

I followed your Install very carefully; PB did NOT work.
The reason was: my Linux was a 64-bit Red Hat. At this point in time there is no version of PB that runs on a 64-bit OS.
I installed the 32-bit Red Hat and all went well.
Perhaps you will like to mention this in your Install.
Thank you
by Morlet Eric
Sun Aug 10, 2008 11:06 pm
Forum: Off Topic
Topic: Phenomenon of low popularity PureBasic :?
Replies: 145
Views: 40193

Phenomenon of low popularity PureBasic :?

I installed PureBasic a month ago. I love it. It's a jewel.

To get the attention it deserves, PureBasic needs (in my humble opinion):

1) a "Killer Application": a "jaw dropping" app that is awesome and that illustrates the great features of the system.

2) this app should access the Internet ...
by Morlet Eric
Mon Jul 28, 2008 2:13 pm
Forum: Coding Questions
Topic: How does Purebasic handle 'true false' as well as &
Replies: 7
Views: 1636

How does Purebasic handle 'true false' as well as &

Look at the simple program below and to Debug's Output .
Question : how should one code
If (i=0)&(j=0)
for this program to work ?

Thanks,
Eric Morlet

i.w
j.w
tf.w

i=0
j=1
tf=(i=j)

Debug tf

Debug (i <= j)

Debug (i >= j)

If (i=0)&(j=0)
Debug i
Debug j
Debug "i=0 And j=0"
EndIf ...