Thread: To DL At Schol

  1. #1
    Registered User
    Join Date
    Dec 2001
    Posts
    206

    To DL At Schol

    -nt-

  2. #2
    left crog... back when? incognito's Avatar
    Join Date
    Oct 2001
    Posts
    1,427
    Why does the text do that typewritter kind of stuff......if you do it on purpose how?
    There are some real morons in this world please do not become one of them, do not become a victim of moronitis. PROGRAMMING IS THE FUTURE...THE FUTURE IS NOW!!!!!!!!!

    "...The only real game I thank in the world is baseball..." --Babe Ruth

    "Life is beautiful"-Don Corleone right before he died.

    "The expert on anything was once a beginner" -Baseball poster I own.


    Left cprog on 1-3-2005. Don't know when I am coming back. Thanks to those who helped me over the years.

  3. #3
    Registered User
    Join Date
    Dec 2001
    Posts
    206
    Yeah i do it on purpose. Its actually quite easy. Here:

    typing(char* Text, int speed){

    for (int i = 0;Text[i] != '\0';i++)
    {
    cout << Text[i]<< flush;
    Sleep(speed);
    }

    }

    use this as its own function. (of course) and whenever you want to make it go across the screen like a typewriter, just use typing("What to type", delay between letters);

    ie:
    typing("Look I am typing slowy", 100);
    or
    int x;
    cin>>x;
    typing("You made me type this fast!", x);


    hope that helped

  4. #4
    left crog... back when? incognito's Avatar
    Join Date
    Oct 2001
    Posts
    1,427
    Thanks yeah.......that's very clever.
    There are some real morons in this world please do not become one of them, do not become a victim of moronitis. PROGRAMMING IS THE FUTURE...THE FUTURE IS NOW!!!!!!!!!

    "...The only real game I thank in the world is baseball..." --Babe Ruth

    "Life is beautiful"-Don Corleone right before he died.

    "The expert on anything was once a beginner" -Baseball poster I own.


    Left cprog on 1-3-2005. Don't know when I am coming back. Thanks to those who helped me over the years.

  5. #5
    Registered User
    Join Date
    Dec 2001
    Posts
    206
    This is meant for school but you can use my homemad lib file if you like. It has alot of compressed words(like cout reduced to say, saves some time... and lots of others, its pretty kewl)

  6. #6
    Registered User
    Join Date
    Dec 2001
    Posts
    206
    source files (new)

  7. #7
    Registered User
    Join Date
    Dec 2001
    Posts
    206
    oops 4got file lol. source files (new)

  8. #8
    Registered User
    Join Date
    Dec 2001
    Posts
    206
    program only

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Where Can I DL IE6?
    By mike_g in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 06-10-2008, 12:30 PM
  2. How to declare dl exports within dll cp?
    By joeyzt in forum C++ Programming
    Replies: 3
    Last Post: 05-15-2004, 04:37 PM
  3. My First Game - Sucks, but DL it anywayz plz :)
    By lfireteam destroyer in forum Game Programming
    Replies: 7
    Last Post: 06-20-2002, 02:31 PM