Search found 499 matches

by voodooattack
Apr 01, 2006 13:45
Forum: Community Discussion
Topic: Here's my life-simulator in 3D written in fb (5GB download!)
Replies: 6
Views: 3390

bastard >:P
by voodooattack
Feb 20, 2006 12:11
Forum: General
Topic: wierd ASIN bug
Replies: 5
Views: 1355

ASIN accepts a value as radians (double)..

that would be -1 to 1

so, you can't feed it a value larger than 1 or less than -1 :)
by voodooattack
Feb 20, 2006 12:07
Forum: General
Topic: Windowtitle() possible bug (latest testing release)
Replies: 21
Views: 3716

you can always set the console title manually on windows:

Code: Select all

#include "windows.bi"

CALL SetConsoleTitle ("Hello World!")

sleep
But i have no idea how'd you do that on linux :-/
by voodooattack
Feb 18, 2006 13:51
Forum: General
Topic: DIM Bug ??
Replies: 5
Views: 1188

you have to do: dim x as string, y as string in your code, the 1st variable is missing the 'as' part, so the compiler assumes its the default data type, which is integer in FB (or at least numerical, as i guess) your code would work in VB, since it has a default data type (variant) that can encapsul...