Forum: C++ Aug 28th, 2004 |
| Replies: 1 Views: 10,583 I'll give you the benefit of the doubt and say you'll simply want to learn for education purposes or out of curiousity. Even then, asking someone to teach you how to write a virus is like asking how... |
Forum: C++ Jul 14th, 2004 |
| Replies: 6 Views: 2,710 This topic has been discussed to death already. Check out the Careers forum to see what others think. Here's one post for example: http://www.daniweb.com/techtalkforums/thread328.html |
Forum: C++ May 30th, 2004 |
| Replies: 13 Views: 29,208 What type of game? The more complex your game is, the more you'll need to organize your code, so I highly recommend learning object oriented techniques. Please be a little more speficic on what you... |
Forum: C++ Mar 26th, 2004 |
| Replies: 4 Views: 3,912 Try to do as much as you can, and post code here. Someone will try to help you. You asking someone to write a whole program for you for $25, is not enough, no matter how compelling your story might... |
Forum: C++ Mar 25th, 2004 |
| Replies: 3 Views: 2,761 I agree. It was a kick ass book. I like Liberty's explanation of things up until complex abstract data types. |
Forum: C++ Mar 6th, 2004 |
| Replies: 1 Views: 10,730 In your while loop, you're telling it to loop five times and keeping track with variable count. Once you first enter the while loop, you're immediately incrementing it with the stament count++. Even... |
Forum: C++ Mar 2nd, 2004 |
| Replies: 8 Views: 6,617 |
Forum: C++ Jan 14th, 2004 |
| Replies: 4 Views: 4,691 I actually think C++ books are easier to understand than C books. I think you should start off with C++. It's more mainstream and more people know it. For the most part, they're pretty much the same... |
Forum: C++ Jan 9th, 2004 |
| Replies: 37 Views: 12,898 Huh? What does that have to do with what I said? |
Forum: C++ Jan 9th, 2004 |
| Replies: 8 Views: 6,713 Yes, you could, like I said before, if you use premade libraries. I've had to do this from scratch in Turbo Pascal and let me tell you, it didn't take a day. :cool:
How else would he access the... |
Forum: C++ Jan 5th, 2004 |
| Replies: 37 Views: 12,898 I remember in high school, every person that was enrolled in computer science, wanted to become a game programmer. The only two that didn't were the only two girls in the class. I guess it's a guy... |
Forum: C++ Jan 5th, 2004 |
| Replies: 37 Views: 12,898 I hope it wasn't just another "hey let's create a game" craze all of us programmers go through. |
Forum: C++ Jan 5th, 2004 |
| Replies: 8 Views: 6,713 I assume this must be a school project of some sort where you have to do it this way. If you want a border or a frame look around your pictures, you can put your pictures in an HTML table and change... |
Forum: C++ Jun 30th, 2003 |
| Replies: 6 Views: 3,670 Who's dougy? :shock: Yeah, I was a little bit annoyed. One of the first rules in web site usability is to avoid putting "coming soon" links. Looks like you still got a good thing going though. Post... |
Forum: C++ Jun 30th, 2003 |
| Replies: 6 Views: 3,670 Nice web site. I specially liked the part when I was teased into thinking you had screenshots. I love when I click on a link and don't see what I intended to see. ;) |
Forum: C++ Jun 30th, 2003 |
| Replies: 2 Views: 6,918 Looks like someone wants cheap labor. Not interested either. I'm looking for something more stable, pays at least $45 an hour, and low risk. This seems to have none of that. (There's too much of a... |
Forum: C++ Jun 17th, 2003 |
| Replies: 13 Views: 39,013 What do you mean at closing? When you close your program? If so, just make it one of your last lines. |
Forum: C++ Jun 12th, 2003 |
| Replies: 13 Views: 39,013 An easy way to delete a file is to just call a system command from Windows. dafile.txt is the file you want to delete.
#include <stdlib.h> // needed to use system() function
int main() {
... |
Forum: C++ Jun 12th, 2003 |
| Replies: 13 Views: 39,013 Are those suppose to be horns? They look like donkey ears. |
Forum: C++ May 20th, 2003 |
| Replies: 6 Views: 5,096 You got too much time on your hands. ;) |
Forum: C++ May 11th, 2003 |
| Replies: 4 Views: 8,732 You can create windows applications with pretty much any popular language out there, even Perl. I take it you haven't explored deep enough in the C++ realm to do any Windows programming. Visual... |
Forum: C++ Mar 22nd, 2003 |
| Replies: 6 Views: 5,096 There's different ways to do this. How do you want to do it? You can do it quickly with dialog wizards or code it from scratch. This sounds like a class assignment. You have to be more specific. |
Forum: C++ Mar 22nd, 2003 |
| Replies: 8 Views: 3,580 Whoa, yeah, time does fly. Well, even if you still don't know C++, I'm sure you learned other stuff. I always try to keep myself active in something, even if I don't acomplish something else. For... |
Forum: C++ Mar 22nd, 2003 |
| Replies: 2 Views: 3,306 I'll say. You should try to start programming before even thinking about creating a game. It's like saying "I want to operate on people" without taking biology first.
You can pretty much use any... |
Forum: C++ Mar 14th, 2003 |
| Replies: 18 Views: 6,373 What do you mean by the latest version? The beta version? 5? I'm using 4 and the code I posted with "<iostream.h>" works and has always worked for me. |
Forum: C++ Mar 13th, 2003 |
| Replies: 18 Views: 6,373 Really? Hmm... what version of Dev-C++ are you using? The following works for me on Dev-C++ 4.0:
#include <iostream.h>
int main() {
cout << "Hello World From About\n";
return 0;
} |
Forum: C++ Mar 12th, 2003 |
| Replies: 18 Views: 6,373 What error are you getting when you try to compile in Dev-C++? It's always worked fine for me. |
Forum: C++ Mar 4th, 2003 |
| Replies: 5 Views: 4,389 I agree with Bob. Show that you've tried to do the problem. List some code if you have tried it or pseudocode. If you can't come up with even pseudocode, you'll make us wonder why you're attempting... |
Forum: C++ Feb 28th, 2003 |
| Replies: 37 Views: 12,898 I still don't know which one. I think I modified a few of them. Maybe you got a link. I just read what I wrote a while back and laughed my ass off. |
Forum: C++ Feb 27th, 2003 |
| Replies: 37 Views: 12,898 |
Forum: C++ Feb 27th, 2003 |
| Replies: 19 Views: 5,390 Pardon me, aeinstein, but don't you think a pm on that would have been more appropriate? ;)
I'm just joking. Ok now someone say it back to me. :) |
Forum: C++ Feb 27th, 2003 |
| Replies: 37 Views: 12,898 Haha. Yeah, I remember modifying a few Alice posts... could you tell? ;) |
Forum: C++ Feb 26th, 2003 |
| Replies: 37 Views: 12,898 I better get my act together and setup some sort of forum. It seems that everyone is doing it nowadays. ;) If I do set one up, I'll probably create it myself. It won't have all the same features as... |
Forum: C++ Feb 17th, 2003 |
| Replies: 37 Views: 12,898 No problem. Your webmail link seems to be having some difficulties too, if you didn't know already. =)
http://www.roberdin.com/squrrielmail |
Forum: C++ Feb 16th, 2003 |
| Replies: 37 Views: 12,898 Roberdin, just checked out your site. Nice. One thing though, I don't know if you knew already, that that link you have from your main logo image "web design redesigned" takes you to a 404 page. More... |
Forum: C++ Feb 15th, 2003 |
| Replies: 37 Views: 12,898 Well, I think you should try creating a few games by yourself first. Even though they turn out crappy. This will give you a feel of how much effort there needs to be put in a game. One thing is... |
Forum: C++ Feb 15th, 2003 |
| Replies: 37 Views: 12,898 Ooh, creating a game. I think I've gone through the urge of creating "the game" multiple times, especially when I was younger (around 14-16). You have no idea how many times my friends and I have... |
Forum: C++ Feb 15th, 2003 |
| Replies: 5 Views: 3,726 That's a weird question. It's like asking for a book on "Windows 3.1 for Windows 2000 Datacenter Server" users. =) Ok, maybe I'm exaggerating a bit. I did use C though a long time ago when I was... |
Forum: C++ Feb 5th, 2003 |
| Replies: 13 Views: 11,448 Dirty habit? Hehe... yes, possibly. I used to read a lot when I was little and also watched a lot of TV. I guess I sat too close to the TV and read in dim lighting. I don't mind too much wearing... |
Forum: C++ Dec 21st, 2002 |
| Replies: 13 Views: 6,032 I never looked. I think it's in an old box in the garage. I still have to look. 8) |