Skip to sidebar Skip to content
Ipercube Technical
Jack of all trades, master of none
Date: Time: - Stardate:
Welcome, Log in by clicking  Here!
SS64
MDN
Stack
Code
GitHub
Wiki
Convert
V Studio
  • Home
  • VB Functions
    • Access Functions
    • Assembly Info
    • Color/Image Functions
    • Data Table Functions
    • Email Functions
    • Active Directory Functions
    • LDAP Functions
    • Excel Functions
    • Logging Functions
    • Source Code Retrieval
    • String Functions
    • Sql Functions
    • Object Utilities Functions
    • System and Utilities
    • Utility Forms
  • VB Classes
    • Environment Variables Helper
  • ABAP
    • ABAP Reports
    • ABAP HTTP Functions
Ipercube Technical
  • Home
  • VB Functions
    • Access Functions
    • Assembly Info
    • Color/Image Functions
    • Data Table Functions
    • Email Functions
    • Active Directory Functions
    • LDAP Functions
    • Excel Functions
    • Logging Functions
    • Source Code Retrieval
    • String Functions
    • Sql Functions
    • Object Utilities Functions
    • System and Utilities
    • Utility Forms
  • VB Classes
    • Environment Variables Helper
  • ABAP
    • ABAP Reports
    • ABAP HTTP Functions

Get Assembly ResourceList (Assembly Path)

Loads a .NET assembly from the specified file path and returns a formatted list of its embedded resource names.

This method attempts to load the assembly from the given path using Assembly.LoadFrom . If successful, it delegates to GetResourceList(Assembly) to extract and format the resource names.

VB
    Public Function GetResourceList(assemblyPath As String) As String

        Try
            ' Check if the file exists
            If Not IO.File.Exists(assemblyPath) Then
                Return String.Empty
            End If

            Return GetResourceList(Assembly.LoadFrom(assemblyPath))
        Catch
            Return "Unknown"
        End Try

    End Function

Posted by ipercube


© 2026 Ipercube Design