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 Basic Program in Visual Studio 2017
⇒⇒Visual Studio Tutorials
2017-08-13, 1820👍, 0💬
Popular Posts:
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode ...
Where to get the detailed description of the JSON.stringify() Function in JavaScript? Here is the de...
What Is the 2017 Version of Azure API Management Service? The 2017 Version of Azure API Management a...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...