Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: hedvule
  • Content: Threads
  • Order by date
  1. hedvule

    EOF problems

    Hi, I have a text file that looks like this: 0 169 26 1 172 27 2 172 27 0 134 15 1 134 15 2 134 15 0 219 18 And I'm reading it with very simple loop HitsIn.open(HitsFile); while (!HitsIn.eof()) { HitsIn >> DetectorNo >> Row >> Column; // do something with these data } The problem is that...
  2. hedvule

    Passing reference to class as a function parameter

    Hi, i have following problem: I have a function in which I need to change some variables of class. I tried to pass a reference to this class as a function parameter but I get a violation acces warning and the function doesn't run. Could you please help me? The code looks like this: Class1...
  3. hedvule

    Find a letter in char

    Hello, I have a following problem: I have a char, which is a mixture of numbers and letters - something like 23H9. How can I obtain from it the letter (in my exemple H). Please help me, thanks, Hedvika.
  4. hedvule

    Deleting parts of text file

    I have a following problem: I have a text file, I have to read each row and if it fullfills some conditions delete this line. The file looks like this: 1234 472 890 278 9009 12.348 etc. I have to check e.g. 1234+472+890 > 7899 ? If yes, delete this line! Is it possible within this...

Part and Inventory Search

Back
Top