I have the following code that is activated when a command button is clicked. I am not too sure what is being accomlished here. Maybe because I thought that me was used for the current form, but the current form does not have anything in the text boxes when it appears. Can anyone help? thanks so very much!!!
Private Sub cmdUpdateValue_Click()
Dim fmodal As New frmParameter
strCurrentfile = Me.txtCurrentLink.Text
strNewfile = Me.txtNewLink.Text
strLinkedDir = Me.txtLinkedDir.Text
strCurrentDIR = Me.txtCurrentDIR.Text
strNewDIR = Me.txtNewDIR.Text
fmodal.Show vbModal
End Sub
Private Sub cmdUpdateValue_Click()
Dim fmodal As New frmParameter
strCurrentfile = Me.txtCurrentLink.Text
strNewfile = Me.txtNewLink.Text
strLinkedDir = Me.txtLinkedDir.Text
strCurrentDIR = Me.txtCurrentDIR.Text
strNewDIR = Me.txtNewDIR.Text
fmodal.Show vbModal
End Sub