Qbasicnews.com

Full Version: Freebasic programming questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know how to translate programs made in freebasic versions prior to freebasic version 0.14 (because the versions aren't downwards compatible).

I also like to know where i can download wx-c.dll

Can anyone help me please.

Thanx

Anonymous

post the incompatible code. mine seems to be 'downwards compatible'
Quote:I also like to know where i can download wx-c.dll


http://m0n573r.afraid.org/wx-c.dll
ChaOs:

This is the code:

DIM num AS INTEGER = 98845
Print num
Sleep

I get an error too many expressions

It works fine in version 0.13 but not in version 0.14 or 0.12 ?

Luckily i downloaded all the versions i could find but it would be nice if at least it works in the latest versions.

I have a lot of programs working in one version but not in another version!

Maybe i should post it to the original maker of freebasic?
What do you advice?
Code:
DIM num AS INTEGER = 98845
Print num
Sleep

... I didn't know you could do that in fb0.13. But since its apparently been changed in 0.14, you should simply do this:

Code:
DIM num AS INTEGER
num = 98845
Print num
Sleep

That's how you had to do it in qb.

--j_k
Quote:DIM num AS INTEGER = 98845
Print num
Sleep

I get an error too many expressions

It works fine in version 0.13 but not in version 0.14 or 0.12 ?
Thats strange, it runs perfect with the latest unstable .14b win release, havent tested it on any other versions tho..
Thanx

It indeed works well in the latest version

Think we can close this topic now