deepak.krishnan
In the zone
Hello friends
This is the code given in MDI form:
The problem is that when I select a file in the open dialog box and try to open it does not display the file in a textbox given in a child form of the MDI application
This is the code given in MDI form:
Code:
Private Sub mnuopen_Click()
cd.Filter = "AllFiles|*.txt"
FileName = cd.FileName
cd.ShowOpen
frmmain.Caption = cd.FileName
End Sub
The problem is that when I select a file in the open dialog box and try to open it does not display the file in a textbox given in a child form of the MDI application