Auf ein Object eines MDIChilds zugreifen
ID | 5 |
---|---|
Link Reference | Not set |
Link Credits | Not set |
Link Technical Documentation | Not set |
PlCodelang | VB.NET |
PlGroup | GUI, MDI-Fenster |
PlItemTitle | Auf ein Object eines MDIChilds zugreifen |
Code | Dim oForm As Form For Each oForm In Me.MdiChildren If Not TypeName(oForm) = "MDIForm" Then If oForm.Name = "frmHotel" Then MessageBox.Show(oForm.GetType.ToString + "|" + CType(oForm, frmHotel).hotelid.ToString) End If End If Next |
Result Example |