[Mono-bugs] [Bug 79896][Nor] New - Bind a dll late with VB (CreateInstance)
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Fri Nov 10 17:00:44 EST 2006
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by giganoid at mymtw.com.
http://bugzilla.ximian.com/show_bug.cgi?id=79896
--- shadow/79896 2006-11-10 17:00:44.000000000 -0500
+++ shadow/79896.tmp.17690 2006-11-10 17:00:44.000000000 -0500
@@ -0,0 +1,47 @@
+Bug#: 79896
+Product: Mono: Class Libraries
+Version: 1.1
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: VB Runtime
+AssignedTo: mono-bugs at ximian.com
+ReportedBy: Giganoid at mymtw.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Bind a dll late with VB (CreateInstance)
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+Description of Problem:
+
+I try to bind a dll late to my exe with VB-Method CreateInstance.
+Tested with Mono 1.2
+
+
+Code to reproduce the problem:
+
+Sub Main()
+ Dim myAssembly As System.Reflection.Assembly =
+Reflection.Assembly.LoadFile("C:\myAssembly.dll")
+ Dim myAssemblyMainClass As Object = myAssembly.CreateInstance
+("myAssembly.Main", True, Reflection.BindingFlags.CreateInstance,
+Nothing, Nothing, Nothing, Nothing)
+ Dim tmpResult As Boolean = myAssemblyMainClass.Main()
+ End Sub
+
+
+Actual Results:
+
+WARNING **: Missing method
+Microsoft.VisualBasic.CompilerServices.NewLateBinding::LateGet
+(object,Type,string,object[],string[],Type[],bool[])
+
+How often does this happen?
+
+Always
More information about the mono-bugs
mailing list