Gemeinsam zu mehr Effizienz in der Anwendungserstellung
|  (→Verwendung) |  (→Beispiele) | ||
| Zeile 101: | Zeile 101: | ||
|          DllPath = Application.CodeProject.Path & "\" & "ClassLibrary1.dll" |          DllPath = Application.CodeProject.Path & "\" & "ClassLibrary1.dll" | ||
| - | |||
|      With New NetComDomain |      With New NetComDomain | ||
| - | + |          Me.ControlContainer0.Object.LoadControl .CreateObject("UserControl1", "ClassLibrary1", DllPath) | |
|      End With |      End With | ||
| - |      Me.ControlContainer0.Object. | + |      MsgBox Me.ControlContainer0.Object.Control.SayHello | 
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | ||
| End Sub | End Sub | ||
| Inhaltsverzeichnis | 
Option Compare Database Option Explicit Private WinForm As Object Private Sub Befehl1_Click() Dim DllPath As String DllPath = "C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Windows.Forms.dll" With New NetComDomain Set WinForm = .CreateObject("Form", "System.Windows.Forms", DllPath) WinForm.Text = "Das ist ein .NET Winform" WinForm.StartPosition = 1 WinForm.ShowIcon = False WinForm.TopLevel = False End With Me.ControlContainer0.Object.LoadControl WinForm WinForm.Show End Sub
Public Class UserControl1 Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click MsgBox("Hello World") End Sub Public Function SayHello() As String SayHello = "Hallo, ich bin eine Public Function!" End Function End Class
Option Compare Database Option Explicit Private Sub Befehl1_Click() Dim DllPath As String DllPath = Application.CodeProject.Path & "\" & "ClassLibrary1.dll" With New NetComDomain Me.ControlContainer0.Object.LoadControl .CreateObject("UserControl1", "ClassLibrary1", DllPath) End With MsgBox Me.ControlContainer0.Object.Control.SayHello End Sub