Search:

Type: Posts; User: Dilmerv

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    3,685

    Path Questions StreamReader??

    Hello,

    I'm reading a file from a network drive but I'm having a problem in this line.


    StreamReader fileRead = new StreamReader("\\E-Storage\\Billing\\text.txt")
    The reason that I don't...
  2. Replies
    4
    Views
    5,180

    Yes I used google too but I was looking for a...

    Yes I used google too but I was looking for a free pdf library that I could use instead!
    Thanks guys
  3. Replies
    4
    Views
    5,180

    Convert Pdf to Image format!

    Hey guys,
    Does anyone know where could I find some help on how to convert a pdf to a tiff or any image format?
  4. Thread: Question?

    by Dilmerv
    Replies
    4
    Views
    1,378

    Question?

    Does anyone know some good tutorials online?
    Also a good book for a c# beginner?

    Thanks
  5. Replies
    8
    Views
    1,337

    Thanks a lot now I'm getting this output 1. 2...

    Thanks a lot now I'm getting this output

    1. 2 2 2 2 2
    2. 2 2 22 2 2
    3. 2 2 2 2 2
    4. 2 2 2 2 2
    5. 2 2 2 2 2
    6. 2 2 2 2 2
    7. 2 2 2 2 2
    8. 2 2 2 2 2
  6. Replies
    8
    Views
    1,337

    Basically I'm asking for 5 inputs that are First...

    Basically I'm asking for 5 inputs that are First name, Last Name, Degree, HireDate, and Salary. Those four are output it to a file.

    Jason Bush ComputerScience 04/02/2004 $45.000

    But Since I...
  7. Replies
    8
    Views
    1,337

    and if I do this cout

    and if I do this
    cout << i << ". " << Engine[i][j] << "\n";

    It will display my info like this
    2
    2
    2
    2
    2
    Instead of having the whole row in one line
  8. Replies
    8
    Views
    1,337

    Yes but Engine [i][j]; goes from 1 to 20 and...

    Yes but Engine [i][j]; goes from 1 to 20 and there are only 3 rows that I'm reading from the file so either I have to change the for loop or do something else !
  9. Replies
    8
    Views
    1,337

    Display Two Dimen.. Info Help?

    Hey guys I'm reading a file into a two dimensional array that look like this:

    2 2 2 2 2
    2 2 2 2 2
    234 234 234 234 2.32323e+006
    22222 2 2 2 2
    Dilmer Valecillos ComputerScience 02/04/3008...
  10. Replies
    13
    Views
    2,200

    The second line does not applycout cin >>...

    The second line does not applycout cin >> firstname;

    cout <<"Enter First name" << endl;
    r.getFName(cin);
  11. Replies
    13
    Views
    2,200

    I'm doing something like this Engineer r();...

    I'm doing something like this


    Engineer r();

    cout <<"Enter First name" << endl;
    cin >> firstname;
    r.getFName(cin);

    It is giving me a compile error
  12. Replies
    13
    Views
    2,200

    thank you I'm going to try

    thank you I'm going to try
  13. Replies
    13
    Views
    2,200

    if I want to initialize the elements in private...

    if I want to initialize the elements in private could I do this


    Engineer::Engineer(): fName(""), lName(""), degree(""), hireDate(""), salary(0.0)
    {
    }
  14. Replies
    13
    Views
    2,200

    if a constructor is define like this in the class...

    if a constructor is define like this in the class
    Engineer( string = "", string = "", string = "", string = "", double = 0.0 );
    How could I initialize all the data members if they are already...
  15. Replies
    13
    Views
    2,200

    I'm sorry I didn't mean to offend anyone this is...

    I'm sorry I didn't mean to offend anyone this is just frustrated because I can't figure it out.
    Have a good day guys.
  16. Replies
    13
    Views
    2,200

    of course I have I'm just stock creating the...

    of course I have I'm just stock creating the implementation file which contains all the class definitions but thanks anyway
  17. Replies
    13
    Views
    2,200

    PLease Help with Class Implementation

    hey guys,

    I'm stuck with my final project and I would like a little help
    This project is based on class implementation so here's the class that the teacher gave us



    #ifndef ENGINEER_H...
  18. Replies
    7
    Views
    1,431

    IF I WANT TO ADD A PATH COULD I DO THIS? ...

    IF I WANT TO ADD A PATH COULD I DO THIS?

    ifstream inFile( "Billing_Reports\myfiles[0].c_str()" );
  19. Replies
    7
    Views
    1,431

    I will ask for the file name and store it in a...

    I will ask for the file name and store it in a array to be able to open an specific file within my directory
  20. Replies
    7
    Views
    1,431

    this is what I have so far which I barely started...

    this is what I have so far which I barely started last night


    #include <iostream>
    #include <fstream>
    #include <string>

    using namespace std;

    void Option_1();
  21. Replies
    7
    Views
    1,431

    Basically I have a folder that contains reports...

    Basically I have a folder that contains reports for the whole month, and every single day is a separate file.
    What I need to do is find a way to read every single file but one thing the file name...
  22. Replies
    7
    Views
    1,431

    Ifstream and String [?]

    Good Afternoon,
    A quick question?

    is it possible to this


    string File_Name[1] = {"Test.txt"};

    ifstream inFile(File_Name[0]);
  23. Replies
    3
    Views
    1,111

    thanks a lot

    thanks a lot
  24. Replies
    3
    Views
    1,111

    by the way the file is going to change once in a...

    by the way the file is going to change once in a while so how could I create a loop that will run until the last line and display it ?
  25. Replies
    3
    Views
    1,111

    Please Some Advice?

    Hey guys If I want to just read the last line of a txt file and display it how could I do that?

    for example if I want to read the whole file with this info but I need to cout just the last line ?...
Results 1 to 25 of 44
Page 1 of 2 1 2