solution any time,
caring every time.
MLM Software Demo
Inventory Control Software Demo
Store Management Software Demo
Home
Products
Services
Download
About Us
Clients
Success Stories
Feedback
Events
Contact Us
Post a Message in reply to
Re: MDI form
by
vbguru
From:
Email Address:
Subject:
Message:
> Private Function NumberOfChildForms() As Long > Dim lngIndex As Long > Dim frmChild As Form > For Each frmChild In Forms > If frmChild.MDIChild Then > lngIndex = lngIndex + 1 > End If > Next frmChild > NumberOfChildForms = lngIndex > End Function > -------------------------------------------------------------------------------- > > Also in your child forms have this: > > visual basic code:-------------------------------------------------------------------------------- > Option Explicit > > Private cnt As Integer > > Public Property Let cntValue(ByVal Value As Integer) > cnt = Value > End Property > > Public Property Get cntValue() As Integer > cntValue = cnt > End property