dll

  • Thread starter Thread starter Frank
  • Start date Start date
F

Frank

Hi,
if I run an appl within VB.NET the output window lists the used dll's. Is
there a way to list the dll's in the application, with some class, function?
For instance to show it in the about window.
Thanx
Frank
 
* "Frank said:
if I run an appl within VB.NET the output window lists the used dll's. Is
there a way to list the dll's in the application, with some class, function?
For instance to show it in the about window.

\\\
Me.ListBox1.DisplayMember = "EscapedCodebase"
Me.ListBox1.DataSource = [Assembly].GetExecutingAssembly().GetReferencedAssemblies()
///
 
In addition to Herfreids comments, dont forget to import the reflection
namespace.

Imports System.Reflection Namespace

HTH

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing

Herfried K. Wagner said:
* "Frank said:
if I run an appl within VB.NET the output window lists the used dll's. Is
there a way to list the dll's in the application, with some class, function?
For instance to show it in the about window.

\\\
Me.ListBox1.DisplayMember = "EscapedCodebase"
Me.ListBox1.DataSource = [Assembly].GetExecutingAssembly().GetReferencedAssemblies()
///
 
* "One Handed Man \( OHM - Terry Burns \) said:
In addition to Herfreids comments, dont forget to import the reflection
namespace.

Imports System.Reflection Namespace

That's what I forgot to add :-(((.
 
Great, thanks both. It's even easier then expected. I looked on the internet
and must have missed the search keywords.
 
Back
Top