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 strongm 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. mikeeeblue

    Sendmail theory issues.

    I have had a bit of success. I can communicate with the daemon now and get the mail queued for delivery. I can then check the /var/spool/mqueue dir to view the mail i sent. The only problem im having now is that the connection is refused when i try to connect to the daemon from outside the...
  2. mikeeeblue

    Sendmail theory issues.

    Hey all, This is what im trying to do. Im networking two computers via a cross over cable (no other connection is coming in, including the internet). I have installed sendmail on computer A (well when i say installed it came on red hat). Now what I want to do is send an email from computer B by...
  3. mikeeeblue

    dll export problem

    Hi all. I have this .cpp file used to create a dll file. When i compile it however my other exe's cant seem to communicate with it. I believe that it is an "export" problem, meaning that the dll isnt exporting the functions that the exe needs to communicate with it. Is there a setting in VC++...
  4. mikeeeblue

    File input help. fstream

    Hi guys, thanks for your help :-) this is now the code string s; fstream file_op("c:/another.txt",ios::in); while(getline(file_op, s)) cout << s << endl; however i seem to have a problem with the last line, it wont compile and gives me the error: error C2679: binary '<<' : no operator...
  5. mikeeeblue

    File input help. fstream

    Hey all I want to read all the characters from a txt file into a char array, however the problem is is with the code i am currently using i need to set the array size of the char array and if the file has more characters in than the amount of elements declared in the char array then some of the...
  6. mikeeeblue

    network socket problem

    thanks a lot for your help mate. You have helped me solve the problem :) thanks again
  7. mikeeeblue

    network socket problem

    Hi all. Im trying to code a client to communicate with a smtp server. Upon connecting to the smtp server the server sends their informaiton to the client, so i need to use the recv() method to get this information. I use a char buffer of about 300 to read this information into. I then wish to...

Part and Inventory Search

Back
Top