CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Jeff++

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    42
    Views
    20,384

    Re: How Can I Close exe files with C++ code ?

    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...
  2. Replies
    0
    Views
    7,279

    2D graphics library for Codeblocks ??

    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...
  3. Replies
    42
    Views
    20,384

    Re: How Can I Close exe files with C++ code ?

    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...... ...
  4. Re: Can someone Help with Understanding Project Types in CodeBlocks ?

    I'll check out Allegro. thanks.
  5. Re: Can someone Help with Understanding Project Types in CodeBlocks ?

    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....
  6. Replies
    42
    Views
    20,384

    Re: How Can I Close exe files with C++ code ?

    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...
  7. Re: Can someone Help with Understanding Project Types in CodeBlocks ?

    downloading the OGRE SDK right now. Can I do more with it than Win32 GUI ?

    cheers
  8. Re: Can someone Help with Understanding Project Types in CodeBlocks ?

    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...
  9. Re: Can someone Help with Understanding Project Types in CodeBlocks ?

    I understand the " console application " and I get the " dynamic link library "

    but what are " AVR " projects and "lightfeather" , " Ogre " and " FLTK " etc. ??
  10. Can someone Help with Understanding Project Types in CodeBlocks ?

    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...
  11. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    ha ha ha, didn't even notice. lmao.
    thanks Kryles... too funny.
  12. Replies
    42
    Views
    20,384

    Re: How Can I Close exe files with C++ code ?

    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...
  13. Replies
    42
    Views
    20,384

    Re: How Can I Close exe files with C++ code ?

    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...
  14. Replies
    42
    Views
    20,384

    Re: How Can I Close exe files with C++ code ?

    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...
  15. Replies
    42
    Views
    20,384

    Re: How Can I Close exe files with C++ code ?

    hey thanks plasmator,
    that's got it.



    #include <iostream>
    #include <stdio.h>
    #include <windows.h>
    using namespace std;
  16. Replies
    42
    Views
    20,384

    Re: How Can I Close exe files with C++ code ?

    sure thanks for the help John.



    #include <iostream>
    #include <stdio.h>
    #include <windows.h>
    using namespace std;

    int main()
  17. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    ahhh....

    thanks Russco ! so it's holding the last " \n " I assume then ??

    thanks.
  18. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    hey,
    thanks everyone for this educational argument !

    this is great.

    so.... bottom line here is

    I should use
  19. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    how's this....

    and can someone tell me why cin.get(); won't work where I have the two scanf("&#37;"); to pause it at the end...

    thanks



    #include <iostream>
    #include <windows.h>
  20. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    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&#37;20Mr.%20Hell%20Game.zip
  21. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    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...
  22. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    so should I use the iq = 0; or the iq(0); ????
  23. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    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;
  24. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    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...
  25. Re: Newbie'z first real program. Could use some CONSTRUCTIVE critizism to learn...

    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...
Results 1 to 25 of 81
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured