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 SkipVought 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. adriansoars

    Separation of a text file

    I would use the TextReader class for this, then split the file as required with the SubString method of the String Object. If you are concatenating strings make sure you're using the StringBuilder object because of the immutable/mutable difference. Whether you store to a file system or not is...
  2. adriansoars

    Can anyone suggest the best procedure to...

    Yeah.. I wrote these two functions to serialize a file to send over a web service. They will do the trick for you. public static bool UploadFile(string strPath, byte[] btFile) { try { FileStream objFileStream = new FileStream(strPath, FileMode.CreateNew, FileAccess.Write...

Part and Inventory Search

Back
Top