Search found 176 matches
- Jun 11, 2006 22:41
- Forum: General
- Topic: BUG: String-issue (0.16 stable)
- Replies: 4
- Views: 873
- Jun 11, 2006 21:46
- Forum: General
- Topic: BUG: String-issue (0.16 stable)
- Replies: 4
- Views: 873
BUG: String-issue (0.16 stable)
Hi community, I'm glad that my source is going to be fine now. :-) I found the source of all problems! I'm very sure that this is a bug which came within the last 1-2 releases, because I didn't recognized this before. Please check this example to understand what this bug meant: declare SUB WriteToCo...
- Jun 11, 2006 18:47
- Forum: General
- Topic: Bug: STR$(s$) (0.16b stable)
- Replies: 5
- Views: 873
Here are some information: OS: Linux Mandrake 10.1 Platform: AMD Athlon XP Well, I was used to use the latest version. But I suspended the last version before the stable came out, because I thought It would be fine anyway. Regarding to the source code: It's might be better, when I send you the whole...
- Jun 11, 2006 18:22
- Forum: General
- Topic: Bug: STR$(s$) (0.16b stable)
- Replies: 5
- Views: 873
Bug: STR$(s$) (0.16b stable)
Hi, I'm pretty frustrated with the latest release. My source running fine with 0.16b (March 26th) is now broken with the so called stable release. After having investigated for some hours, I have still no clue what's the problem with my source code. I get "Segementation Faults" all the time... 1) DE...
- Jun 11, 2006 11:55
- Forum: General
- Topic: Bug or not ? Default-value of UDTs (0.16b)
- Replies: 2
- Views: 671
Bug or not ? Default-value of UDTs (0.16b)
Hi again, could it be, that the default value of vars has been changed with the latest version of freebasic ? Formerly I assumed that 0 is the default value and it was running quite well in an older 0.16b-release, but now I have to set my var = 0 manually. I figured that "glitch" out as I have recog...
- Jun 11, 2006 9:53
- Forum: General
- Topic: BUG: ELSE EXIT FOR (0.16b)
- Replies: 3
- Views: 757
BUG: ELSE EXIT FOR (0.16b)
Hi,
these lines causes a a bug
I always need to rewrite it:
regards, Stormy
these lines causes a a bug
Code: Select all
FOR e = 1 TO 10
IF e <> 4 THEN
' do something
ELSE EXIT FOR ' <--- this lines is marked as erroneus
END IF
NEXT e
I always need to rewrite it:
Code: Select all
FOR e = 1 TO 10
IF e <> 4 THEN
' do something
ELSE
EXIT FOR
END IF
NEXT e
regards, Stormy
- Jun 01, 2006 14:13
- Forum: General
- Topic: Framerate control problem.
- Replies: 12
- Views: 2263
- May 29, 2006 15:21
- Forum: Projects
- Topic: Practicing.... Radial Blur in OpenGL
- Replies: 15
- Views: 4562
- May 29, 2006 6:01
- Forum: Projects
- Topic: Practicing.... Radial Blur in OpenGL
- Replies: 15
- Views: 4562
- May 24, 2006 18:14
- Forum: Beginners
- Topic: trouble with Dim...
- Replies: 12
- Views: 1975
- May 23, 2006 11:42
- Forum: General
- Topic: rotate : save
- Replies: 3
- Views: 935
- Apr 26, 2006 22:01
- Forum: Projects
- Topic: REL's pixel scrolling engine ported to FB!
- Replies: 28
- Views: 8138
- Apr 21, 2006 18:13
- Forum: General
- Topic: To lillo concerning fbgfx lib...
- Replies: 5
- Views: 1066
Whenever you use screensync your program will wait until everything will be drawn. But note that Screensync ignores completely any background processes of your operating system. Thus little freezes caused by the OS will have a greater effect, when screensync is enabled, than usual. Instead of using ...