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 gkittelson 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: *

  1. ktrumbla

    creating a LF only with Microsoft c++

    try "\r\n" instead of just "\n" gives two CRs
  2. ktrumbla

    creating a LF only with Microsoft c++

    Thank you all for the help I have not tried writing to the file in binary but that sounds like the correct path. the char lf = 10; outputfile << field[1] << lf; did not work. I was reading from the MSDN and found that ofstream forces the CRLF
  3. ktrumbla

    creating a LF only with Microsoft c++

    here is the line of code used for the output. field[] is a string array outputfile << field[1] << &quot;\n&quot;;
  4. ktrumbla

    creating a LF only with Microsoft c++

    I am trying to create an output file to be used on an AIX system which does not want to see a CRLF at the end of line. How do I tell my program to only give me the LF? I have tried '\n', &quot;\n&quot;, and #define &quot;\x0a&quot; none of these work. Is there a way or does microsoft know best...
  5. ktrumbla

    gnu g++ problem when compiling

    AIX version 4.3.3 g++ version 2.95.3.0 when I try to compile my program it gives me an error Collect2: Library libm not found. I can not find a library libm on bulls freeware where I had gotten g++ from. here is my code, any help would be appreciated. the command I used to compile was &quot;g++...
  6. ktrumbla

    g++ compile error

    Version number of g++ is incorrect that was a version of anothe package I loaded at the same time I do not have the version number with me it is at the office
  7. ktrumbla

    g++ compile error

    There were no parameters passed to the compiler I used from the command line &quot;g++ ./parsing.cpp&quot;
  8. ktrumbla

    g++ compile error

    Yes I guess that might be some good information - running on AIX 4.3.3 compiled with g++ 2.0.7 - initially I wrote it with Visual C++ version 6 without any problems, the only headers I included were iostream, fstream, and string. Also I used namespace std
  9. ktrumbla

    g++ compile error

    when I try to compile a simple program written in C++ I get the error:&quot;collect2: Library libm not found&quot; this is a simple parsing utlility which takes a &quot;|&quot; delimited file reads each segment into a string array and writes it back out as a &quot;|&quot; delimeted file. (it...
  10. ktrumbla

    Samba problem

    LeDam,I will take that email I do not have it any longer ktrumbla@ford.com thanks again
  11. ktrumbla

    Samba problem

    LeDam Thank you I will try the 2.0.7 version I think I still have it around
  12. ktrumbla

    Samba problem

    I did not have to compile, it came as an install binary
  13. ktrumbla

    Samba problem

    After installing Samba using the Bull's freeware install, which completed successfully, I tried to test using the smbclient and received the following error. Can anyone tell me what I am doing wrong? # /usr/local/bin/smbclient -L servername exec(): 0509-036 cannot load program...

Part and Inventory Search

Back
Top