Search found 41 matches

by carolight
Thu Dec 29, 2005 2:26 am
Forum: Off Topic
Topic: Help with spyware!
Replies: 17
Views: 3984

There's a program called Hitman Pro that's written in AutoIT, that downloads / updates then runs all the free spyware programs automatically one after another, and you can configure it to shut down when it finishes.

http://www.hitmanpro.nl/

The site's in Dutch, but click download, then you can ...
by carolight
Thu Sep 08, 2005 9:29 am
Forum: Game Programming
Topic: Anyone got a basic game example.
Replies: 4
Views: 2179

Helicopter scrolling game demo tutorial at

http://www.3dcurrman.com/tutorial.htm

and other game examples, some with source

http://www.purearea.net/pb/english/projects_game.htm
by carolight
Wed Aug 31, 2005 10:58 am
Forum: General Discussion
Topic: Play Transpetris - updated Aug 30
Replies: 26
Views: 6057

Am I doing something wrong? Now when I press the play button, it comes up straightaway with Yikes Game Over. No tiles at all - the top circle stays blank. The question mark doesn't do anything either.

(I always thought I was rather good at Tetris, and so I should be with the amount of time invested ...
by carolight
Tue Aug 30, 2005 7:39 am
Forum: General Discussion
Topic: Play Transpetris - updated Aug 30
Replies: 26
Views: 6057

Just downloaded again, and mine goes at warp speed straight away - I have to kill the program.

Compaq laptop - Celeron CPU 1.70Ghz. Video - SiS M650 integrated graphics with 64mb shared memory.

Program looks nice, though I have turn the sound off straightaway!
by carolight
Thu Feb 17, 2005 4:46 am
Forum: General Discussion
Topic: PB code archive - another way
Replies: 5
Views: 1985

The Delphi people have a couple of programs that do this well - a commercial one at http://www.baltsoft.com
and a free one at http://www.d-tnt.co.uk/

Each is a program that contain articles and examples of code, and you can add your own. It is updateable by internet, so there is a central server ...
by carolight
Sat Feb 12, 2005 6:14 am
Forum: General Discussion
Topic: EasyDB Translate to English
Replies: 6
Views: 2660

Thanks for pointing this lib out to me - it looks interesting. (Those german to english translation pages are sooo funny.)

I think the maximum field length may be 127, as I changed your Folder and Filename fields from length 200 to 127 and your program works (with edbWriteRecord(0))

But it does ...
by carolight
Thu Nov 18, 2004 7:21 am
Forum: General Discussion
Topic: Allowing own image format to show on explorer
Replies: 4
Views: 1734

I wanted to do this too, but it's too hard for me at the moment.

To point you in the direction I was heading, there's documentation in the Windows API help file, under Shell Extensions, and Icon Handlers.

Let me know when you've worked it out - :D
by carolight
Fri Nov 05, 2004 7:41 am
Forum: Coding Questions
Topic: Save a particular location on an application
Replies: 5
Views: 1902

Can you use a Preference file? These are like .ini files, and are really easy to save into and read.
by carolight
Tue Nov 02, 2004 5:35 am
Forum: Off Topic
Topic: Personality verse and worse
Replies: 3
Views: 1459

And Dare2, he was dreaming
Of code that would be late -
By writing polls and poems
He would procrastinate.

:D
by carolight
Sat Oct 30, 2004 10:20 am
Forum: Tricks 'n' Tips
Topic: PureBASIC wrapper for Cheetah database module
Replies: 7
Views: 13334

blueb - I haven't done anything with Cheetah, except for work out the basic functions, but I had difficulty with puts until I used the record number:


; Find Record
CallFunction(0, "XDBMOVEFIRST_Z", DBHandle,0)
; Get Record Number
recno.l = CallFunction(0, "XDBRECORDNUMBER_Z", DBHandle)
; (Do ...
by carolight
Sun Oct 17, 2004 3:33 am
Forum: Off Topic
Topic: Advice on which C to hang one's hat.
Replies: 38
Views: 8958

Yes, Programming Windows by Petzold - sorry - I thought everybody owned one, like the Bible.

Mine is Programming Windows 95, and I still use it for XP.
by carolight
Sat Oct 16, 2004 12:29 pm
Forum: Off Topic
Topic: Advice on which C to hang one's hat.
Replies: 38
Views: 8958

I like the LCC No Frills approach to C, especially with learning the API.

Haven't done any C since I found PB, but I think knowledge of C really helps.

For tutorials, I like the about.com ones, if you can stand the adverts - the Delphi ones are really good:

http://cplus.about.com/library/blctut ...
by carolight
Fri Oct 01, 2004 4:15 am
Forum: Coding Questions
Topic: MyDB database
Replies: 23
Views: 5161

Thanks, Weave, I'll take a look - still open to any other suggestions about non-ODBC databases.
by carolight
Thu Sep 09, 2004 9:43 am
Forum: Coding Questions
Topic: OOPish Interface to Tsunami
Replies: 13
Views: 3434

Well, my (non-)progress is this:

I ran it on XP home, XP pro, win 98 and the 2 examples I gave were fine. So then I transferred the interface to a much more complicated program that opens multiple files. It crashed on an AllocateMemory statement. I put in a plain vanilla AllocateMemory(5), and it ...
by carolight
Wed Sep 08, 2004 9:11 am
Forum: Coding Questions
Topic: Interfaces to regular functions
Replies: 7
Views: 2106

I could be wrong, but I believe Interfaces for DLLs are really for interfacing to COM / ActiveX.

You can imitate OOP using Interfaces, but I can't think why you'd want to in this case, as I don't believe it would be very fast.

Can you just create a procedure to call the DLL procedure (although ...