Search:

Type: Posts; User: BigSter

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    1,989

    Hey that works perfect! Thanks

    Hey that works perfect!
    Thanks
  2. Replies
    7
    Views
    1,989

    Okay this is what I have now: #include...

    Okay this is what I have now:

    #include <iostream.h>
    #include <stdlib.h>
    #include <string>


    using namespace std;

    int main()
  3. Replies
    7
    Views
    1,989

    Could you give me an example? Thanks

    Could you give me an example?
    Thanks
  4. Replies
    7
    Views
    1,989

    Making the Enter Key do a Return

    Hi,
    I'm writing a text editor program, but I need the enter key to go down a line instead of entering in data. Does anyone have any ideas? This is what I have:

    #include <iostream.h>
    #include...
  5. Replies
    4
    Views
    1,371

    Recognizing Spaces

    Hi,
    I need to have my program recognize the space key. For example if I typed in "Hello Everyone", my program reads back "HelloEveryone". This is a simple example of what I am doing:

    #include...
  6. Thread: Word Processor

    by BigSter
    Replies
    1
    Views
    920

    Word Processor

    Hey,
    I am trying to make a simple word processing program. I would like to use something like this:

    char a_char;
    a_char=getche();

    but I need it to be able to read spaces. Does anyone have...
  7. Replies
    2
    Views
    1,385

    Good Windows Tuitorial

    Hi,
    I've been programming MS-DOS programs with C++ on DEV-CPP for about a year. I am looking to move on to Windows. Can anyone suggest a good tuitorial website or book?
    Thanks
  8. Replies
    4
    Views
    1,716

    This is what I use with Bloodshed: #include...

    This is what I use with Bloodshed:

    #include <stdlib.h>
    #include <iostream.h>
    #include <string>
    using namespace std;

    int main(){

    string name;
  9. Replies
    4
    Views
    6,364

    Okay, I made this program: #include...

    Okay,
    I made this program:

    #include <stdlib.h>
    #include <iostream.h>

    int main(){
    while(1){
    int keystroke;
  10. Replies
    4
    Views
    6,364

    Character for Up Arrow

    Hey,

    I am making a simple menu program in the DOS Console. I've got the whole program to work exept for I have to use w and x for up and down. I was wonder what were the characters for the...
  11. Replies
    9
    Views
    1,224

    You could go: #include #include...

    You could go:

    #include <iostream.h>
    #include <stdlib.h>

    int main()
    {
    cout<<"Hello World!"<<endl; //Prints Hello World on Screen
    system("PAUSE"); //Produces the...
  12. Thread: How to start

    by BigSter
    Replies
    6
    Views
    1,176

    I just started programming about a year ago. I...

    I just started programming about a year ago. I would suggest downloading Bloodshed's Dev-C++ Compiler. I does C, C++, and some Windows. You can download it at:
    ...
  13. Replies
    2
    Views
    1,215

    Works perfect! Thanks

    Works perfect!
    Thanks
  14. Replies
    2
    Views
    1,215

    Deleting a File by Name

    Hi,
    I have a program where I need the user to input the filename to be deleted.
    This is what I have so far:

    #include <iostream.h>
    #include <stdlib.h>
    #include <conio.h>
    #include <windows.h>...
  15. Replies
    13
    Views
    1,795

    Reading All Contents of a file

    Okay,
    I am trying to get this program to read all contents of a text file and then print it. I have a file called tanner1.txt already made. The program only opens up and never gets through the...
  16. Replies
    4
    Views
    949

    Okay, This is what I used that works: ...

    Okay,
    This is what I used that works:

    #include <iostream.h>
    #include <stdlib.h>
    #include <fstream.h>
    #include <iostream.h>
    #include <windows.h>
    #include <conio.h>
  17. Replies
    4
    Views
    949

    Creating a New File

    Hi,
    I need to create a new file and then name it a number.
    I would be using ofstream()

    Thanks
  18. Replies
    2
    Views
    862

    Reading all contents of a file

    Hey I'm using ifstream to read a file, but I need to read and print all the contents of a file.
    for instance:

    ifstream inl(filename.c_str());

    inl>>stuff;

    cout<<stuff<<endl;
  19. Thread: Open File

    by BigSter
    Replies
    4
    Views
    1,100

    Hey Thanks

    Hey Thanks
  20. Thread: Open File

    by BigSter
    Replies
    4
    Views
    1,100

    Open File

    Hey,
    I am making a program where the user is asked what filename he wants to open.

    This is what I have:

    cout<<"Enter File Name"<<endl;
    cin>>filename;

    ifstream inl(filename.txt);
  21. Thread: Random Number

    by BigSter
    Replies
    3
    Views
    955

    That works perfect! Thanks

    That works perfect!
    Thanks
  22. Thread: Random Number

    by BigSter
    Replies
    3
    Views
    955

    Random Number

    Hi,
    I need a program to pick a random number between two values.
    Like:

    int randomnumber;
    0< ramdomnumber <10;
    cout<<randomnuber;<<endl;

    Thanks
  23. Replies
    2
    Views
    835

    Windows Functions

    Hey does anyone know where I can find the most common Windows Function and maybe a tutorial?
    Thanks
  24. Thread: Browse Button

    by BigSter
    Replies
    14
    Views
    1,673

    Browse Button

    Hi, I am making a Browse Button in an Win 32 API using MSV++. I've got the button made, but I was wondering if anyone knew the code for it.
    Thanks


    // BlastIt message handlers //My dialog...
  25. Replies
    5
    Views
    2,131

    Thanks

    Thanks
Results 1 to 25 of 47
Page 1 of 2 1 2