Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 15 of 15
Search took 0.00 seconds.
Search: Posts Made By: CodeWeasel
Forum: C++ Mar 15th, 2006, 9:36 PM
Replies: 10
Views: 346
Posted By CodeWeasel
It's not that big a deal, old code still works...

It's not that big a deal, old code still works like it used to, there are just new "secure" versions out there. Usually they have the same name, with a _s suffix after them. The old versions were...
Forum: Coder's Corner Lounge Mar 15th, 2006, 9:26 PM
Replies: 55
Views: 1,259
Posted By CodeWeasel
haha well, I'm mostly referring to GameDev.net....

haha well, I'm mostly referring to GameDev.net. Most of the people that write articles for them are quite competent. At least, of what I've read so far...
Forum: Coder's Corner Lounge Mar 15th, 2006, 2:38 AM
Replies: 55
Views: 1,259
Posted By CodeWeasel
I rarely use the net/Google for coding help....

I rarely use the net/Google for coding help. Mostly, I read my books (90% are 3D programming/engine design), and look stuff up on the MSDN library. Learned win api coding from 1 chapter in a book and...
Forum: C++ Mar 15th, 2006, 2:28 AM
Replies: 10
Views: 346
Posted By CodeWeasel
Just a heads up, a lot of the old C string...

Just a heads up, a lot of the old C string manipulation functions like strcat and strtok are depricated now, with newer, "safer" versions out.
Forum: C++ Mar 15th, 2006, 2:25 AM
Replies: 19
Views: 593
Posted By CodeWeasel
void reverseString( char* in, char* out ) { int...

void reverseString( char* in, char* out )
{
int inLength = strlen( in );
if( strlen( out ) >= inLength )
{
out[inLength] = '\0';
for( int i = inLength-1; i > -1; i-- )
out[i] =...
Forum: C++ Mar 8th, 2006, 1:32 AM
Replies: 3
Views: 188
Posted By CodeWeasel
I use the Win API and MSVC++'s resource editor to...

I use the Win API and MSVC++'s resource editor to do my guis for my applications, coding it by hand with the MFC is too messy IMO.

The first screenie is of the editor. You can see a listbox is...
Forum: C++ Mar 6th, 2006, 9:40 PM
Replies: 20
Views: 585
Posted By CodeWeasel
You say you want to use pointers and advanced...

You say you want to use pointers and advanced polymorphism? Write a quadtree, that should occupy some of your time.
Forum: C++ Feb 26th, 2006, 4:49 AM
Replies: 14
Views: 548
Posted By CodeWeasel
The new "Express" line of VS family members are...

The new "Express" line of VS family members are free, but they're NOT full versions. In fact, they're painfully stripped down, although from a learning standpoint they serve their purpose. And an...
Forum: C++ Feb 24th, 2006, 11:19 AM
Replies: 3
Views: 194
Posted By CodeWeasel
Yeah, my bad, forgot the toolhelp header. I think...

Yeah, my bad, forgot the toolhelp header. I think I pieced this together from MSDN code about a year or so ago, so that's why it uses toolhelp.
Forum: C++ Feb 23rd, 2006, 11:09 PM
Replies: 3
Views: 194
Posted By CodeWeasel
Windows API: How to obtain a list of currently running processes.

Haven't posted in a while, figured I'd give you guys something from my personal code stash I've built up over the years. :) It wouldn't let me create a new thread in the tutorials section, so I've...
Forum: C++ Aug 2nd, 2004, 2:02 AM
Replies: 11
Views: 447
Posted By CodeWeasel
Thanks! :D

Thanks! :D
Forum: C++ Aug 1st, 2004, 7:55 PM
Replies: 11
Views: 447
Posted By CodeWeasel
Very true, it's the first language I myself...

Very true, it's the first language I myself started with and I find myself using it more often than most others.

A little off topic, I made two posts in the tutorials section, but the second one (my...
Forum: C++ Aug 1st, 2004, 7:46 PM
Replies: 32
Views: 2,756
Posted By CodeWeasel
yeah, I can't really stand the Dummies...

yeah, I can't really stand the Dummies books...just aren't very helpful...maybe it's because we're not dummies? ;)
Forum: C++ Aug 1st, 2004, 12:45 AM
Replies: 0
Views: 430
Posted By CodeWeasel
I've been working on this chat program for some...

I've been working on this chat program for some time now and thought it might help some of you get started on sockets and/or dialog box programming (without MFC). Also, some of you may have tips or...
Forum: C++ Aug 1st, 2004, 12:40 AM
Replies: 32
Views: 2,756
Posted By CodeWeasel
I've been working on this guide for some time...

I've been working on this guide for some time now, and do periodic updates to it. Rather than post the whole thing here and have to update 2 different sites, I'll just link to the original. You can...
Showing results 1 to 15 of 15

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 7:46 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC