Click here to Skip to main content
Click here to Skip to main content

How to call a .NET DLL from a VBScript

By , 12 Oct 2010
 

You might be wondering how you can call a .NET DLL from a VB Script. Well, look no further, as I will explain how to achieve this in a step by step manner.

You might be wondering why you want to do this?

Why not just do everything in .NET or VBScript?

Well there might be some instances where this will be useful, like modifying a start-up script for GPO which is already in VBScript, but you want to extend it safely (compiled codes) or just reuse available DLLs that are out there in your organization saving you time to redevelop the same thing again. There are a lot of reasons that you want to do this but this is why I am doing it, unless someone else suggests a better way of doing it. Anyways I am writing this so that if anyone needs this reference, it's just here.

Ok let's start with what you need. Definitely you need to develop or use an existing DLL. For this example, we will develop it from scratch, you also need the VBScript that you want to edit or create and that’s it.

Step 1: Your DLL. Fire up Visual Studio you can develop either in C#, VB or any language you want, this sample will be C#. You need to create a Class Library Project.

using System;
using System.Runtime.InteropServices;
namespace MyDLL
{
 [ComVisible(true)]
 public class Operations
 {
 [ComVisible(true)]
 public string getValue1(string sParameter)
 {
 switch (sParameter)
 {
 case "a":
 return "A was chosen";

 case "b":
 return "B was chosen";

 case "c":
 return "C was chosen";

 default:
 return "Other";
 }
 }
 public string getValue2()
 {
 return "From VBS String Function";
 }
 }
}

In the code above, apply the ComVisibleAttribute Class controls accessibility of an individual managed type or member, or of all types within an assembly, to COM. You can apply this attribute to classes, structures, interfaces, delegates, enumerations, fields, methods, assemblies or properties. By default, it is set to true but in case you want to hide the individual type, you can just set it to false (I just showed it for reference purposes, as you notice the getValue2 does not have that attribute, but still it is visible).

Build the project.

Now after creating this Class Library Project, you have to configure it so that when you compile it will register on the systems assembly. There are two ways of doing that; one is to a command prompt. If you have .NET Framework 2.0 installed, regasm would be in the following path at:

C:\windows\microsoft.net\Framework\v2.0.50727\regasm.exe

And use the following for registering and unregistering an assembly:

Register assembly manually

The one on top registers it and the one at the bottom unregisters it. Now what does that the /codebase option stand for? You need to use the /codebase switch when you don’t have your assembly in GAC because that will add an absolute path for your assembly in registry so that COM client can find it.

Another option is Directly to Visual Studio, this is the easy way and it’s as easy as ticking a check box in the project properties.

Register assembly

Now you have your DLL ready.

Step 2: Create your VBScript and here is my sample:

dim myObj
Dim myClass
Set myObj = CreateObject("MyDLL.Operations")
MsgBox myObj.getValue1("a")
MsgBox myObj.getValue2()

Now run your VBScript and that’s it.


License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Raymund Macaalay
Technical Lead
New Zealand New Zealand
Member
http://nz.linkedin.com/in/macaalay
http://anyrest.wordpress.com/

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionref. How to call a .NET DLL from a VBScriptmemberMember 1001963830 Apr '13 - 0:19 
QuestionHow to call a VBScript's function from a .NET DLL?memberMember 97380557 Jan '13 - 21:58 
QuestionHow to call a .NET DLL from a VBScriptmemberMember 25560031 Oct '12 - 2:52 
AnswerRe: How to call a .NET DLL from a VBScriptmemberTL1000S4 Oct '12 - 3:28 
Questionactivex component can't create objectmemberMember 928428820 Jul '12 - 9:25 
GeneralGood ArticlememberIrwan Hassan19 Oct '10 - 19:45 
GeneralRe: Good ArticlememberRaymund Macaalay19 Oct '10 - 22:53 
GeneralNice OnememberAnurag Gandhi18 Oct '10 - 20:51 
Very Useful for me.
Have my 5.
Thanks. Smile | :)
Anurag Gandhi.
http://www.gandhisoft.com
Life is a computer program and every one is the programmer of his own life.
My latest article: Group GridView Data

GeneralImproovements for your codememberReinhard Ostermeier13 Oct '10 - 5:11 
GeneralRe: Improovements for your codememberRaymund Macaalay13 Oct '10 - 9:18 
GeneralIntellisensememberJohan197416 Jul '10 - 0:22 
GeneralRe: IntellisensememberRaymund Macaalay17 Jul '10 - 21:50 
Questionother types?memberpeterbacsi10 May '10 - 22:24 
AnswerRe: other types?memberRaymund Macaalay10 May '10 - 23:06 
GeneralThanks a lotmemberIrwan Hassan10 May '10 - 17:29 
GeneralNice!memberMatt McKinney6 May '10 - 7:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 12 Oct 2010
Article Copyright 2010 by Raymund Macaalay
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid