Apparently my brain stopped....why isnt this working?
(I have removed code so as to make this post not hundreds od lines long. to the best of my knowledge, the removed code shouldn't affect the outcome)
dim conceal as integer
<frmStart Code>
Private Sub Option1_Click(Index As Integer)
Select Case Index
Case 0
conceal = 8
End Select
End Sub
Private Sub cmdNext_Click()
Me.Hide
Update
frmMain.Show
End Sub
<modMain Code>
Public Sub Update()
With frmMain
.txtConceal.Text = conceal
End With
End Sub
Shouldn't "frmMain.txtConceal.Text" on frmMain be "8"? Its not! (Its Blank) Why?!?! (Using VB 6)
(I have removed code so as to make this post not hundreds od lines long. to the best of my knowledge, the removed code shouldn't affect the outcome)
dim conceal as integer
<frmStart Code>
Private Sub Option1_Click(Index As Integer)
Select Case Index
Case 0
conceal = 8
End Select
End Sub
Private Sub cmdNext_Click()
Me.Hide
Update
frmMain.Show
End Sub
<modMain Code>
Public Sub Update()
With frmMain
.txtConceal.Text = conceal
End With
End Sub
Shouldn't "frmMain.txtConceal.Text" on frmMain be "8"? Its not! (Its Blank) Why?!?! (Using VB 6)