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

Search:

Type: Posts; User: CoriNEIT

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    1,355

    Need of Assistance #3

    I am writing a program that grabs information from a .dat file. I have the code all structured up, but I get these 2 errors that does not make any sense to me on how to fix the program. Am I missing...
  2. Replies
    5
    Views
    2,691

    Re: Need of Assistance #2

    Okay, then I'm going to have to do something different. I'm copying off a program that I made before with the same setup to help me sort of get it structured. The only difference is that is only uses...
  3. Replies
    5
    Views
    2,691

    Need of Assistance #2

    Hello again, I am currently writing a program that grabs information from a .dat file. When I go to debut I get this error.32423


    #include <iostream>
    #include <string>
    #include <fstream>
    using...
  4. Replies
    4
    Views
    1,399

    Re: Debug Question

    Thank you. The first link worked for me great.
  5. Replies
    4
    Views
    1,399

    Re: Debug Question

    Well I wrote the code on VS 2010 and started it up on VS 2013. So I think that's the reason why now that I think of it.
  6. Replies
    4
    Views
    1,399

    Debug Question

    What does that mean to delete and rebuild?



    Error 1 error LNK1207: incompatible PDB format in 'C:\Users\Cori\Desktop\Drive\Quarter 2\C++\Projects\studentgrades\Debug\studentgrades.pdb'; delete...
  7. Replies
    6
    Views
    4,476

    Re: remote monitoring application

    Here, this may help out.

    http://i.imgur.com/jKddGYWl.jpg
  8. Replies
    13
    Views
    3,196

    Re: Need of Assistance :)

    Alright. Thank you for your advice and help. Since I have nothing to do until 5pm tonight, I'll spend some time on the debugger.

    Thanks again,
    Cori
  9. Replies
    13
    Views
    3,196

    Re: Need of Assistance :)

    I'm running Windows 8 with Visual Studio Ultimate 2013
  10. Replies
    13
    Views
    3,196

    Re: Need of Assistance :)

    Okay, thank you.
  11. Replies
    13
    Views
    3,196

    Re: Need of Assistance :)

    if (cards_remaining == 0) {
    cout << "Reshuffing." << endl;
    cards_remaining = 52;
    for (int i = 0; i < 52; i++)
    card_drawn[i] = false;

    My instructor never went into detail about how to...
  12. Replies
    13
    Views
    3,196

    Re: Need of Assistance :)

    Alright, I'll try that out.

    Thank you.

    _____EDIT_____


    So, that code did the trick at stopping the never ending card drawing. But the code that I added to my draw_a_card function isn't...
  13. Replies
    13
    Views
    3,196

    Re: Need of Assistance :)

    What would the code be to stop the program from dealing more than 52?



    if (cards_remaining.empty())
    break;

    or
  14. Replies
    13
    Views
    3,196

    Need of Assistance :)

    First things first. I go to New England Institute of Technology for Software Engineering and Cyber Security. I'm currently in my second quarter (15th week) and I'm starting to do a little more...
Results 1 to 14 of 14





Click Here to Expand Forum to Full Width

Featured