Randomblink
The Irreverent Reverend
- Local time
- Today, 15:49
- Joined
- Jul 23, 2001
- Messages
- 279
Question:
If I create a usertype:
Public Type boObject
frmAction As String
frmForm(1 To 3) As Form
tblTable(1 To 3) As String
tblField(1 To 2) As String
frmField(1 To 2) As Control
End Type
And I want to assign: FrmXYZ and FrmABC to the frmForm element, how would I do this?
Would it be:
Set frmForm(0) = FrmXYZ
Set frmForm(1) = FrmABC
Or would it be something else...?
If I create a usertype:
Public Type boObject
frmAction As String
frmForm(1 To 3) As Form
tblTable(1 To 3) As String
tblField(1 To 2) As String
frmField(1 To 2) As Control
End Type
And I want to assign: FrmXYZ and FrmABC to the frmForm element, how would I do this?
Would it be:
Set frmForm(0) = FrmXYZ
Set frmForm(1) = FrmABC
Or would it be something else...?