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

    .net performance issue

    Hi all,I've a WinForms App. It contains around 8 tabs. Each tab will display data from database. Some tabs will compute the data and display as charts/pivot tables. The problem here each tab have to display/compute thousands of records. The application never freeze since I created threads to manage this. However the overall performance of the app is very slow. I'm afraid performance will even go down if more tabs are added in the future. Please suggest your opinion to improve performance...

  2. #2
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: .net performance issue

    If appropriate, use virtual lists to display the data. Only read enough data that is visible to the user.

Tags for this Thread

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