VB.NET splash screen

G

Guest

Hi all, I am writing an application in VB.NET with a bunch of dll in within.
Just wondering how to code a txt box in a splash screen that show the name of
the dll just loaded, also I wish that the main form is showed when all of
dll's are loaded.
I will appreciate any example.

Thanks
 
H

Herfried K. Wagner [MVP]

Chris said:
Hi all, I am writing an application in VB.NET with a bunch of dll in
within.
Just wondering how to code a txt box in a splash screen that show the name
of
the dll just loaded, also I wish that the main form is showed when all of
dll's are loaded.

You cannot, except you are loading the DLLs yourself "dynamically" using
'Assembly.LoadFrom' or similar.
 
G

Guest

Thanks Herfried, I will try otherwise

Herfried K. Wagner said:
You cannot, except you are loading the DLLs yourself "dynamically" using
'Assembly.LoadFrom' or similar.
 
B

Blitz Krieg

Yes, you can... to an extent. You can walk through the list of loaded
assemblies and display them by title with something nice, say a
progress-bar running beyond the title? Some type of simple animation
is always nice when listing items of some type for some length of time.

However, Herfried is right, in that you can NOT see everything (DLLs,
assemblies, etc., per se). Of course if you have a stub application
that spawns another process (that is the REAL application, the stub
process can capture the modules list at process 2 load, and forward it
on. Another example I have seen is that the splash screen is REALLY a
stub application that jumps to the real application... sounds kind of
weird but really does work well.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top