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

Search:

Type: Posts; User: Gibson_Junk

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    2,078

    C++ Sorting a string and inserting text.

    I have a program like this that I made.


    outfile.open ("ImportUsers.txt");

    if (infile.good())
    {
    while (!infile.eof())
    {
    infile >> First >> Rank >> Last;// Saves the line in...
  2. How do i enable/disable a loop with getasynckeystate()

    I need a code example of being able to put something in a loop and then being able to disable and enable it by pressing a key.

    I know how to enable and disable stuff



    if...
  3. Replies
    2
    Views
    1,416

    GetAsyncKeyState Help

    Ok so i making a console program that uses lots of userinput while its running.
    The problem is i made sample test code to see if it works and this is the problem. If i press the Shift key it...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured