CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 1999
    Posts
    8

    Displaying huge data

    I want to fill CEdit control with huge amount of data. Instead of refreshing the window after the data is loaded (it may take a long time), I want to display one line at a time.

    What is the best way to do this without having the control reload the same data again and again by calling SetWindowText() or UpdateData(FALSE) with same data + new line * number of lines?

    Thanks

    Keon



  2. #2
    Join Date
    Apr 1999
    Posts
    396

    Re: Displaying huge data

    Doubt Edit controls are made for streaming. However, RichEdit controls are. Might want to take a look into their StreamIn functions. Or else you could design your own control to use


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