Tools, FAQ, Tutorials:
"MyLibApp.vb" - Call VB Class from Library
How to call a function from a VB class provided in a library?
✍: FYIcenter.com
If you want to call a function from a VB class provided in a library,
you can follow this tutorial:
1. Reference the shared function with the class name prefix:
MyLib.PrintHello();
2. See the following full source code example, MyLibApp.vb:
' MyLibApp.vb
' Copyright (c) FYIcenter.com
Module MyLibApp
Sub Main()
MyLib.PrintHello()
End Sub
End Module
3. Compile the code with the "vbc /reference" command:
>vbc /reference:MyLib.dll MyLibApp.vb Microsoft (R) Visual Basic Compiler version 2.2.0.61624 Copyright (C) Microsoft Corporation. All rights reserved. >dir MyLibApp.* 09:55 AM 6,656 MyLibApp.exe 09:53 AM 134 MyLibApp.vb
4. Run the executable code:
C:\fyicenter>MyLibApp.exe Hello world! - From MyLib
⇒ First Visual C# Program in Visual Studio 2017
⇐ "MyLib.vb" - VB Class and Library
2017-08-13, ∼2835🔥, 0💬
Popular Posts:
How to use the "set-backend-service" Policy Statement for an Azure API service operation? The "set-b...
How to Build my "sleep" Docker image from the Alpine image? I want the container to sleep for 10 hou...
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text ...
How To Set session.gc_divisor Properly in PHP? As you know that session.gc_divisor is the frequency ...
What is EPUB 2.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 2.0 Metadata "dc:publisher" ...