February 23rd, 2009 08:06 PM
yes , I know that all now. After having fun with my game, which only ever needed to run on windows. Why would I try to open WINDOWS CALCULATOR if it wasn't running on a windows platform ???
Using...
February 23rd, 2009 07:54 PM
hey,
I found this library for codeblocks with a great little tutorial on how to get started with 2D graphics. problem is the example code for main.cpp has a bug. wondering if anyone else out there...
February 23rd, 2009 02:20 PM
it may seem rediculas or impossible to you, but I just don't learn the " normal " way. I've been told that all my life, and I've been told not to do it that way, or that I can't do it that way...... ...
February 23rd, 2009 03:54 AM
I'll check out Allegro. thanks.
February 23rd, 2009 03:53 AM
hey thanks, trust me.... I'm reading my face off ! however I learn fast by seeing examples. So... I want to get it set up so I can run some " example " code and see what's going on under the hood....
February 23rd, 2009 03:42 AM
no offence Paul, but I have been told I learn things backwards all my life. You're not the first. I hold some pretty serious patents because of my backwards out of the box thinking, including a the...
February 22nd, 2009 05:02 PM
downloading the OGRE SDK right now. Can I do more with it than Win32 GUI ?
cheers
February 22nd, 2009 02:46 PM
hey thanks Speedo.
I'll check to see if I actually have the libraries, and if not... I'll bet I can download them from the codeblocks website.
So is Ogre the best thing to learn about to...
February 22nd, 2009 02:27 AM
I understand the " console application " and I get the " dynamic link library "
but what are " AVR " projects and "lightfeather" , " Ogre " and " FLTK " etc. ??
February 22nd, 2009 02:18 AM
Hey,
I'm pretty new to programming. Especially C++. I have recently switched to codeblocks environment. It has many project types available when you click " new project " but no explaination of...
February 22nd, 2009 02:12 AM
ha ha ha, didn't even notice. lmao.
thanks Kryles... too funny.
February 18th, 2009 02:14 AM
um well I have read about all of that, I just like to try things and not JUST read about it. otherwise it's boring. Also, like I said... if I go ahead and try something and it doesn't work... I learn...
February 17th, 2009 02:16 AM
maybe so, but trying things out bring up problems and errors. Then I learn why there's a problem or error. Then when I do come across that situation in a tutorial... I understand what they're saying...
February 16th, 2009 10:47 PM
hey Paul. I'm actually a teacher, so I know that everyone learns different. I will take your advice, however I am better at reverse engineering to see how something works. I learn much faster that...
February 16th, 2009 09:26 PM
hey thanks plasmator,
that's got it.
#include <iostream>
#include <stdio.h>
#include <windows.h>
using namespace std;
February 16th, 2009 08:02 PM
sure thanks for the help John.
#include <iostream>
#include <stdio.h>
#include <windows.h>
using namespace std;
int main()
February 16th, 2009 06:53 PM
ahhh....
thanks Russco ! so it's holding the last " \n " I assume then ??
thanks.
February 16th, 2009 04:03 PM
hey,
thanks everyone for this educational argument !
this is great.
so.... bottom line here is
I should use
February 16th, 2009 07:09 AM
how's this....
and can someone tell me why cin.get(); won't work where I have the two scanf("%"); to pause it at the end...
thanks
#include <iostream>
#include <windows.h>
February 16th, 2009 03:59 AM
here's a link to the zip file with the game as an exe with cute little Devil icon if anyone wants to share it.
cheers.
http://theperish.ca/The%20Mr.%20Hell%20Game.zip
February 16th, 2009 03:56 AM
I have re-built the game with a new twist....
I have made the suggested changes for better coding, ( thanks everyone )
but I also though... hey... Mr. Hell really hates my band a lot.. so...
February 16th, 2009 03:50 AM
so should I use the iq = 0; or the iq(0); ????
February 16th, 2009 03:21 AM
so you mean it should be
#include <iostream>
#include <windows.h>
using namespace std;
int iq = 0; // Is this what you mean ??
int iq2 = 0;
int calc = 0;
February 16th, 2009 01:36 AM
hey thanks potatocode..
I have int iq; at the beginning of the program, so you mean I have to delcare it again ?
or should I NOT have put it at the beginning of the program ?
thanks for the...
February 15th, 2009 11:24 PM
hey GCDEF,
thanks for the tips. I see what you're saying about using { } I have been doing that already with my new program. I will have to change that in this one.
if I should only call...