|
-
Jan 29th, 2019, 04:27 PM
#1
Thread Starter
New Member
VB Class Library launch
HI
I have DLLs which have classes, in clases is methods for show forms.
These dlls launches an exe project which is compiled, and few dlls calls another with code:
Dim obj As New dllName.ClassName // via reference in VS
obj.ShowMainForm ( testID, Username ... )
or with create object:
Dim obj As New Object
obj = CreateObject("dllName.ClassName")
obj.ShowMainForm
Is there any way to make one universal dll launcher in vb or C#.
I mean exe application, which loads dll, and shows classes, methods, and I select method from class, and set parammeters like up in example testId, Username......
Any help will be good
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|