CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: CM2013

Search: Search took 0.03 seconds.

  1. Replies
    10
    Views
    3,343

    Re: C# Load times and .NET resources

    Arjay is right - sleep() wont help as the program is starting up...tried it.
  2. Replies
    10
    Views
    3,343

    Re: C# Load times and .NET resources

    I did it in a Medical Imaging project - it was slow loading - once loaded it was fast - that was bcos we had to load all the images (scans) in memory for fast processing. But it wasn't at the...
  3. Replies
    10
    Views
    3,343

    Re: C# Load times and .NET resources

    Are you doing it in a different thread? Try Thread.Sleep(30) and then a refresh in a thread while the main() loads?
  4. Replies
    10
    Views
    3,343

    Re: C# Load times and .NET resources

    In the main(), can you show the splashscreen first and then load components ? Or load the ones absolutely necessary to show the splashscreen itself in a background thread and then load the rest?
    ...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured