RunningAsExe – Determine whether the code is running in an EXE or DLL

RunningAsExe – Determine whether the code is running in an EXE or DLL

' Return True if the application is running as an EXE' Return False if the application is running as a DLLFunction RunningAsExe() As Boolean    ' get the codebase of the running assembly    Dim codeBase As String = Reflection.Assembly.GetExecutingAssembly.CodeBase    ' extract the extension    Dim ext As String = System.IO.Path.GetExtension(codeBase)    ' return True if extension is EXE    Return String.Compare(ext, ".exe", True) = 0End Function

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular