Search found 36 matches

by berklee
Wed Jan 12, 2005 5:02 pm
Forum: Coding Questions
Topic: Just to let you in a secret...
Replies: 2
Views: 1245

You have no chance to survive make your time.

I'm sorry, I had to.
by berklee
Thu Jan 06, 2005 9:40 pm
Forum: General Discussion
Topic: Where is your Taskbar usually located?
Replies: 14
Views: 4229

Usually it's found somewhere hear my computer.

And yes, I'm a stupid-head. :)
by berklee
Wed Jan 05, 2005 3:58 pm
Forum: General Discussion
Topic: Windows Databases
Replies: 23
Views: 6565

How complex of a database application do you need?

Do you just need table storage, or are you looking for stored procedures, triggers, etc?
by berklee
Wed Jan 05, 2005 12:54 am
Forum: General Discussion
Topic: Windows Databases
Replies: 23
Views: 6565

Cheetah?
by berklee
Wed Dec 29, 2004 4:30 am
Forum: General Discussion
Topic: What should be in the next version!
Replies: 28
Views: 7291

I'd like to see a more complete Network library.
by berklee
Wed Dec 22, 2004 8:15 pm
Forum: Coding Questions
Topic: 2000 look in apps
Replies: 25
Views: 5987

I remembered running into this in my VB days.... in that world, it's done with subclassing.

http://vbnet.mvps.org/index.html?code/s ... ecombo.htm

Hope that helps.
by berklee
Fri Dec 17, 2004 12:07 pm
Forum: Tricks 'n' Tips
Topic: a little winsock
Replies: 12
Views: 9366

You can download it from purearea.net.
by berklee
Wed Dec 15, 2004 1:27 pm
Forum: Tricks 'n' Tips
Topic: a little winsock
Replies: 12
Views: 9366

hmmmm

Code: Select all

buffer_p = AllocateMemory(buffer_pbh,buffer_l,0) 
AllocateMemory() - Incorrect number of parameters.

Has there been a language change since this was posted?
by berklee
Fri Dec 03, 2004 1:32 am
Forum: General Discussion
Topic: How to store/retrieve pictures in an ODBC Database ?
Replies: 16
Views: 6691

The only thing I'd mention as a something of a SQL guy is that if you're going to use a LONG BLOB for your table column, don't use SELECT * when you call the table. Instead, call the actual column/row you want to cut down on server resources.
by berklee
Thu Dec 02, 2004 5:41 pm
Forum: Announcement
Topic: Notpad 2004
Replies: 15
Views: 5164

That EditPad looks a lot like NoteTab, which has been around for about 6 or 7 years now...

Then again, you can only come up with so many ideas for a plain text editor...

http://www.notetab.com
by berklee
Mon Nov 29, 2004 12:32 pm
Forum: Coding Questions
Topic: Networking Question
Replies: 11
Views: 3656

For me, it started because I wanted to create a server with the PB Networking library.

Although I can manage the sessions with multiple users, I wanted to be able to track IPs as well.
by berklee
Sun Nov 28, 2004 10:29 pm
Forum: Coding Questions
Topic: Networking Question
Replies: 11
Views: 3656

Sorry, just thought I'd bump this thread - I'm really curious to know.

Is the Networking Library something that we should not expect to be completed?
by berklee
Fri Nov 26, 2004 5:32 am
Forum: Coding Questions
Topic: Using Structures for Application Files?
Replies: 7
Views: 1829

actually, I believe that code snippet you did there is just about perfect.

Thanks, man. That's what I believe I needed to know!
by berklee
Fri Nov 26, 2004 12:39 am
Forum: Coding Questions
Topic: Using Structures for Application Files?
Replies: 7
Views: 1829

Thanks for those.

I have no problem with assembling a file format in general.... my concern is more the 'how do I load stuff from my file format into my pre-defined structures'?
by berklee
Wed Nov 24, 2004 2:03 pm
Forum: Coding Questions
Topic: Using Structures for Application Files?
Replies: 7
Views: 1829

Using Structures for Application Files?

Hi, this may seem silly, but after 4 years of programming (in VB, so I guess the proper term would be 'scripting' :wink: ), I realized that I've never created my own application file format, instead always opting to use two-dimensional XML or something equally huge.

Since XML doesn't seem to be ...