Search:

Type: Posts; User: mbolthouse

Search: Search took 0.00 seconds.

  1. Thread: MP3 and DOS

    by mbolthouse
    Replies
    10
    Views
    1,478

    YES!

    There is one out there, I've had one running on my machine before in DOS, it was pretty cool, but of course, it could be the only thing running at the time, not sure how to make a better one though....
  2. Replies
    2
    Views
    3,172

    Ways to Write IF Statements...

    Just like the topic says, I was wondering if there are any different ways to write IF statements besides the following:

    if(x > 0)
    {
    cout << "X is Greater than 0";
    }
    else
    {
    cout <<...
  3. Replies
    3
    Views
    1,191

    Or..

    or you can use a system("PAUSE"); with the stdlib.h, or getch(); with the conio.h

    Mike
  4. Replies
    6
    Views
    1,211

    Opps

    Sorry Strider, i didn't see that you fixxed it before. Thanks for your help, though, I appreciate it!

    Mike
  5. Replies
    6
    Views
    1,211

    AH-HA!

    OK, It works now with much help from Perderabo from the unix.com forum. What was wrong was the loop itself:

    if(movement == 8)

    If you are to set the variable 'movement' to an 'int' instead of a...
  6. Replies
    6
    Views
    1,211

    Getch() and IF problem...

    Ok, he's the problem...

    #include iostream.h
    #include conio.h

    int main()
    {

    char movement;
  7. Thread: Color?

    by mbolthouse
    Replies
    15
    Views
    3,974

    Background w/ Foreground

    I've tried this multiple ways, but I can't get a, lets say, a blue background w/ green text. Is there a way to accomplish this?

    Thanks!
    Mike
Results 1 to 7 of 7