Search found 1626 matches

by rdc
Aug 24, 2005 19:57
Forum: Beginners
Topic: bytes to variable
Replies: 16
Views: 4167

Or you could just an array of bytes.
by rdc
Aug 22, 2005 13:24
Forum: Projects
Topic: JellyFish Pro Editor (version 1.60, Aug 21, 2005)
Replies: 7
Views: 5122

Paul,

Thanks for the new version. It keeps getting better.

I have a feature request, although this may not work within your framework. Would it be possible to add macro support? I use this feature in PsPad quite a bit and it really helps. If not, JellyFish still rocks. :)
by rdc
Aug 17, 2005 12:50
Forum: Archive
Topic: SloGro - Fractal Aggregation
Replies: 15
Views: 9732

jdebord wrote:I assume you don't mind if I place it in FBMath, too :)
Sure. Thanks.
by rdc
Aug 17, 2005 12:49
Forum: Archive
Topic: SloGro - Fractal Aggregation
Replies: 15
Views: 9732

cha0s wrote:

Code: Select all

titflag = True
this is like f***ing false advertising
LOL. I was wondering if anyone would comment on that. :)
by rdc
Aug 17, 2005 2:04
Forum: Archive
Topic: SloGro - Fractal Aggregation
Replies: 15
Views: 9732

Not at all. Thanks.
by rdc
Aug 16, 2005 21:04
Forum: Archive
Topic: SloGro - Fractal Aggregation
Replies: 15
Views: 9732

SloGro - Fractal Aggregation

I pulled out my old Scientific American Computer Recreations book and found this: a fractal aggregation program. It takes a while to run depending on your computer speed, but it creates some neat looking patterns using a totally random algo. Option Explicit '=========================================...
by rdc
Aug 16, 2005 2:12
Forum: Sources, Examples, Tips and Tricks
Topic: FreeBasic RGB to HTML RGB....
Replies: 6
Views: 4847

Heh. Well, at least you won't forget it now. :)
by rdc
Aug 15, 2005 20:29
Forum: Sources, Examples, Tips and Tricks
Topic: FreeBasic RGB to HTML RGB....
Replies: 6
Views: 4847

You made things a bit harder than need be: 'Needs FB .14 Option Explicit Type colorstype r As String * 2 g As String * 2 b As String * 2 End Type Declare Function GetHTMLColors(r As Integer, g As Integer, b As Integer) As colorstype Dim c As colorstype c = GetHTMLColors(255, 0, 255) Print c.r;c.g;c....
by rdc
Aug 03, 2005 21:32
Forum: Archive
Topic: Wizardry style maze game
Replies: 7
Views: 9289

Personally, I prefer the single player scheme. Easier to manage. Either way I am looking forward to seeing this.
by rdc
Aug 03, 2005 21:30
Forum: General
Topic: Null Gfxlib driver?
Replies: 7
Views: 1997

Awesome. I can't think of a language that has so much and at the same time is so easy to use. You guys rock.
by rdc
Aug 03, 2005 13:48
Forum: Archive
Topic: Wizardry style maze game
Replies: 7
Views: 9289

Nice work on this. Looks very good.
by rdc
Jul 28, 2005 20:42
Forum: Projects
Topic: JellyFish Pro Editor (version 1.52)
Replies: 18
Views: 11163

I have been using this solid now for several days, and I am quite impressed. It has become my #1 editor. The tooltip info is my favorite feature since it handles both intrinsic and user defined subs/functions. Makes things a lot easier.

Thanks for the hard work on this.
by rdc
Jul 28, 2005 19:59
Forum: General
Topic: Segmentation Violation
Replies: 3
Views: 1271

Thanks! Changing the array broke a lot of things. Glad to have debug support. :)
by rdc
Jul 28, 2005 17:37
Forum: General
Topic: Segmentation Violation
Replies: 3
Views: 1271

Okay, I found the problem. I changed an array from 2 dimensions to 1 dimension and missed some of the references. The parser should probably throw an error if you try to access array dimensions that don't exist.
by rdc
Jul 28, 2005 16:56
Forum: General
Topic: Segmentation Violation
Replies: 3
Views: 1271

Segmentation Violation

I am getting the following compiler error: Aborting due to runtime error 11 ("segmentation violation" signal) Here is my code: http://fileanchor.com/1352-d I am sure I am doing something wrong in the code, but since the compiler just exits, I can't figure out what is going on. Oh, I am on ...