Search found 15 matches

by Balatro
Tue Apr 17, 2007 12:32 pm
Forum: Announcement
Topic: egrid-lite
Replies: 2
Views: 1597

Neat! Thank you 8)
by Balatro
Sat Jan 06, 2007 9:48 pm
Forum: Tricks 'n' Tips
Topic: Simple image processing
Replies: 0
Views: 2924

Simple image processing

Hello,

here are some simple but fairly effective procedures for image manipulation: 180 degrees rotation, 90 degrees rotation, mirror, flip, greyscaling, inversion, image brightness and image contrast. There are probably more elegant ways to implement these things, and certainly more optimized ones ...
by Balatro
Mon Jul 17, 2006 6:25 pm
Forum: Announcement
Topic: Just another Purebasic Optimizer - New release - JaPBo v1.14
Replies: 45
Views: 13473

I can't get this to work with 4.00. Any tips?
by Balatro
Sat Jul 01, 2006 4:59 pm
Forum: Announcement
Topic: ov:Lib v0.27 - Stream OggVorbis in PureBasic (3.94 / 4.00)
Replies: 56
Views: 23616

Can this be used with oggs packed with PureBasic's packer commands, in a way similar to:

Code: Select all

CatchSound(#Sound, NextPackFile())
... and if so, how? Tried to play around with it, but couldn't get it to work.

Anyway, thanks to traumatic for a very good lib!

~ B
by Balatro
Thu Jul 29, 2004 6:08 pm
Forum: Coding Questions
Topic: Data-command
Replies: 2
Views: 1006

Data-command

Are there any differences between:

Data.S "A banana"
Data.S "An apple"
Data.S "A melon"

(and so on...)

and:

Data.S "A banana", "An apple", "A Melon"

(and so on...)

in efficiency, memory use etc.? I was just wondering because I have a project which will use *a lot* of data-lines and I ...
by Balatro
Fri Nov 14, 2003 6:48 pm
Forum: Feature Requests and Wishlists
Topic: CatchMesh
Replies: 1
Views: 1096

I think all of the catch-functions should be put together under the same Catch() command, maybe something like Catch(X, Y, #Catch_Icon). Would be much simpler!

~ B
by Balatro
Wed Nov 12, 2003 7:38 pm
Forum: Off Topic
Topic: Community exploded
Replies: 12
Views: 3643

Hopefully the recent boom in numbers of forum members isn't because of PureBasic being distributed in P2P-networks... :evil:

~ B
by Balatro
Wed Nov 12, 2003 7:35 pm
Forum: Coding Questions
Topic: Progress Bar Refresh
Replies: 10
Views: 2720

Webba, try this:

Code: Select all

UpdateWindow_(WindowID())
~ B
by Balatro
Sun Nov 09, 2003 7:13 pm
Forum: Feature Requests and Wishlists
Topic: [Implemented] Redim PRESERVE
Replies: 37
Views: 9209

I agree -- I know it would make certain things much easier for me.

~ B
by Balatro
Sun Nov 09, 2003 7:00 pm
Forum: Off Topic
Topic: Free icon resources?
Replies: 2
Views: 2589

Free icon resources?

Anyone have any good tips on where to get free, high-quality icons for Windows?

~ B
by Balatro
Fri Nov 07, 2003 6:46 pm
Forum: Coding Questions
Topic: GIF LZW Patent Expires
Replies: 27
Views: 5863

*tips hat*

You're welcome! :)

~ B
by Balatro
Fri Nov 07, 2003 6:29 pm
Forum: Coding Questions
Topic: GIF LZW Patent Expires
Replies: 27
Views: 5863

Codemonger: check out http://www.wotsit.org -- it has *tons* of documents on file formats including graphics files, documents, archive files etc. Should be in every programmer's link archive!

~ B
by Balatro
Wed Nov 05, 2003 8:57 am
Forum: General Discussion
Topic: Select : Case : EndSelect Benchmarks?
Replies: 6
Views: 2005

For speed-critical code I use If / ElseIf / EndIf rather than Select / Case / EndSelect, but that's only because most other Basic-dialects I've used have slow Select against If. PB's Select does seem quite fast though... Has anyone benchmarked thousands of Select loops against similar If-loops in PB ...
by Balatro
Sun Nov 02, 2003 9:40 pm
Forum: Tricks 'n' Tips
Topic: Balloontips with icons & titles
Replies: 3
Views: 2352

Berikco wrote:The PureBasic Visual Designer and Purevision generate this code also.
It's posted a couple of times already i think.
Well, I don't use either of those so I didn't know that :) I guess learning the hard way isn't such a bad thing.

~ B
by Balatro
Sun Nov 02, 2003 8:34 pm
Forum: Tricks 'n' Tips
Topic: Balloontips with icons & titles
Replies: 3
Views: 2352

Balloontips with icons & titles

Hi, my first post here! I haven't seen the code for doing neat balloon-style tooltips with icons & titles here before so I thought I'd post this. Can't remember who posted the original code for doing regular balloontips, but many thanks to him anyway.

Procedure AddToolTip(Handle, Text$, Icon ...