CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    large file handler

    how can i read large files and write large amounts of data from a string? the large files that cant be opened with notepad.


  2. #2
    Join Date
    Dec 1999
    Location
    Dublin, Ireland
    Posts
    1,173

    Re: large file handler

    Notepad can't deal with very large files because it is a 16 bit application. In 32 bit visual basic a string can be about 2 billion characters long which should be sufficient for any file you need :-).
    You could knock together an editor fairly quickly with the rich text box control - but you might find it quicker just to use "Wordpad".

    '--8<-----------------------------------------
    NEW -The printer usage monitoring application
    '--8<------------------------------------------

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured