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

Search:

Type: Posts; User: sysop1911

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    3,833

    Re: Site with massive repository of C++ code?

    Because I want a one-stop-shop for the code.
  2. Replies
    10
    Views
    3,833

    Re: Site with massive repository of C++ code?

    Does this actually have code or just finished programs?



    ;-) Not enough here. Not as complete as I'm looking for



    Looks like mostly Android stuff.
  3. Replies
    10
    Views
    3,833

    Re: Site with massive repository of C++ code?

    I'm somewhat familiar with boost, but I was looking for something even bigger. Though, maybe I have just not looked at boost enough. I hear the boost libraries have a bad rep, is that true?
  4. Replies
    10
    Views
    3,833

    Site with massive repository of C++ code?

    Does anyone know of a site that has a huge repository of C++ code that you can use for free? I'm talking about a site that would have literally thousands of C++ algorithms, code snippets, etc. (it...
  5. Re: How to learn Visual C++ Programming Easily Through online?

    If it's C++, print out this PDF:

    http://www.cplusplus.com/files/tutorial.pdf

    It's a very good beginner's tutorial and it will save you $50.
  6. Re: What is a good book/pdf/website for learing Windows programming?

    Ok, I see your point. I tried to code some of the things from the book before and certain things didn't work right (which I mistakenly attributed to its age), but I just tried it again and it worked...
  7. What is a good book/pdf/website for learing Windows programming?

    I'm thinking of something along the lines of "Programming Windows" by Charles Petzold, but that isn't outdated. I've also got "Windows via C/C++" by Richter and Nasarre, but it is complex and not...
  8. Re: How do I fill variable amount of structs with a loop?

    Thanks, Paul.
  9. Re: How do I fill variable amount of structs with a loop?

    I had not thought about why I had 'name' as an char array instead of a string. I suppose I'll make that change. The cards are strings because they come from a string vector. Each element has two...
  10. How do I fill variable amount of structs with a loop?

    I'm writing small poker game simulator. Program will ask for number of players on table (from 2-9) and then will create those amount of structs and fill in a name for each struct. Here's how I see...
  11. Replies
    2
    Views
    590

    Sorting string by arbitrary method

    I'm programming a card game and want to be able to sort by value, so if someone has an Ace "A", then that would have a higher value than someone with a 10, 'T', or a Jack 'J'. I'm been looking...
  12. Replies
    16
    Views
    4,027

    Re: best c++ book for newibe

    Read this pdf. It's as good as any beginner book out there (that will cost you $50). The pdf is free.

    http://www.cplusplus.com/files/tutorial.pdf
  13. Replies
    2
    Views
    2,727

    Re: DirectX: split screen graphics and text

    Oh, come on! Isn't there a DirectX expert on this forum?
  14. Replies
    2
    Views
    2,727

    DirectX: split screen graphics and text

    Doing some DirectX programming, but can't figure out the following: I want to have a full screen with graphics on one side, which would comprise about 70% of the screen and then text information on...
  15. Replies
    15
    Views
    3,088

    Re: for loop question

    I'm new to STL, but this worked for me:

    #include <vector>

    vector<string> deck; //creates string vector called 'deck'
    vector<string>::iterator VecIt; //creates string iterator...
  16. Replies
    15
    Views
    3,088

    Re: for loop question

    If you don't know what the max size will be, shouldn't you use a vector and not a normal array?
  17. Replies
    4
    Views
    952

    Re: Qestions About The Array

    int temp = a[i];
    a[i] = a[j];
    a[j] = temp;

    He has created an integer variable called "temp" and assigned the value of a[i] to it. Then his has assigned the value of a[j] to a[i]. Finally, he...
  18. Replies
    2
    Views
    767

    Re: Need help with creating toolbar

    Thanks. Worked perfect.
  19. Re: Best book for learning Windows API step-by step?

    Thanks, I'll take a look.
  20. Re: Best book for learning Windows API step-by step?

    I've got "Windows via C/C++" by Richter. Holy ****! Complex book. I did learn a bunch from it, but it's a bit advanced for what I'm looking for now.
  21. Best book for learning Windows API step-by step?

    Anyone know a good book or pdf file out there for learning how to program Windows APIs? I ordered Petzold's book already, but it seems old and not sure if it's a slow progression or just a reference...
  22. Replies
    4
    Views
    4,050

    How do I compile MASM 9 with VStudio 2008?

    I wrote an assembly program in Notepad and changed the extension to .asm. I found the MASM file, ML.exe in MS Visual Studio 9.0\VC\bin. In command prompt, I ran "ML first.asm", but got an error...
  23. Replies
    2
    Views
    767

    Need help with creating toolbar

    I want to create a Window that has a toolbar at the top. I can already create a window and add menus to it. Here is my code so far:
    ...
  24. Replies
    13
    Views
    9,173

    Re: How do I write basic DLL injection file?

    So I have more questions about creating a DLL:

    I know I need to create a header file for the DLL along with the source code for the DLL.

    Header would look something like this:

    #ifdef...
  25. Replies
    13
    Views
    9,173

    Re: How do I write basic DLL injection file?

    Good stuff, Igor. I'll get to work.
Results 1 to 25 of 46
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured