Search:

Type: Posts; User: Zagaberoo

Search: Search took 0.01 seconds.

  1. Thread: Countdown

    by Zagaberoo
    Replies
    3
    Views
    2,079

    Countdown

    Im looking into doing a countdown program, does anybody know a good way to compare today's date and time to the desired date and time and give the difference in days, hours, minutes, and seconds?...
  2. Replies
    3
    Views
    1,266

    Works perfectly, many thanks, Prelude

    Works perfectly, many thanks, Prelude
  3. Replies
    15
    Views
    7,694

    Maybe...

    If you are simply looking to have the program print the numbers backwards, simply do this



    #include <iostream>
    using namespace std;

    int main()
    {
    int numbers[4];
  4. Replies
    3
    Views
    1,266

    DOS fullscreen

    I would like to put my DOS programs into fullscreen using some sort of code (in MS Visual C++ 6.0 standard). On windows 98 you can press a button on the DOS console to make it fullscreen, but you...
  5. Replies
    3
    Views
    2,142

    More accurate time function

    Using time.h when I code something like this,



    #include <iostream>
    #include <time.h>
    #include <system.h>

    int main()
    {
  6. Replies
    1
    Views
    1,700

    Graphics library and header

    I need a graphics libary that I can use with my Microsoft Visual C++ 6.0 and a header with functions to use it (drawing lines, shapes; bitmaps; sprites) without using windows (DOS, Specifically) I...
  7. Replies
    5
    Views
    3,169

    Poll: kbhit() question

    kbhit() is a nifty little function, but can you make it useful, like getch()? I would really like to make a real-time game and need some kind of passive keyboard input that does not "pause" my...
  8. Replies
    5
    Views
    3,169

    Poll: kbhit?

    what is kbhit? what header does it require? how is it used?
  9. Replies
    5
    Views
    3,169

    Poll: Passive Keyboard Input

    I have used cin to get keyboard input for variables, getch() for getting single keypress information, but all of those cause the computer to wait for a keypress. I would like to have some kind of...
  10. Replies
    3
    Views
    2,143

    Thank you SO much!

    Thank you SO much!
  11. Replies
    2
    Views
    5,434

    Thanks, Hammer. the thread you linked to solved...

    Thanks, Hammer. the thread you linked to solved my problem.
  12. Replies
    3
    Views
    1,221

    Thank you, that solved my problem completely.

    Thank you, that solved my problem completely.
  13. Replies
    3
    Views
    2,143

    Problem with chars and char arrays

    Whenever I have a char and want it to equal " " (a space) such as

    [code]
    char ch;
    ch = " ";
    [\code]

    I get this really annoying error that I cannot convert a char[2] to a char. the same thing...
  14. Replies
    2
    Views
    5,434

    getch() key code question

    I love using the getch() function but only know how to use alpha-numeric keys and the return (\r) key. I would really like to have a list of keys such as the up, down, left, and right arrow keys; the...
  15. Replies
    3
    Views
    1,221

    Problem with headers

    In the source code attached I am using both the header files <string.h> and <fstream.h> and my compiler is telling me that ifstream and ofstream are ambiguous symbols. I have located the source of...
Results 1 to 15 of 15