B
bhammer
Why can't I do this?
Private Sub Form_Close()
Me.txtSourceFolder.Tag = Me.txtSourceFolder
End Sub
....then...
Private Sub Form_Open(Cancel as Integer)
Me.txtSourceFolder = Me.txtSourceFolder.Tag
End Sub
It doesn't seem to save the Tag when the form is closed.
How can I make the Opening form load the previous txtSourceFolder string?
-Brad
Private Sub Form_Close()
Me.txtSourceFolder.Tag = Me.txtSourceFolder
End Sub
....then...
Private Sub Form_Open(Cancel as Integer)
Me.txtSourceFolder = Me.txtSourceFolder.Tag
End Sub
It doesn't seem to save the Tag when the form is closed.
How can I make the Opening form load the previous txtSourceFolder string?
-Brad