There are a buch of ocx's and a bas file missing from your zip file but I think this is your problem. Add the highlighted code to Form6.
VB Code:
Private Sub File1_Click()
Dim Path1 As String
Dim load1 As String
load1 = Text1.Text
Path1 = Dir1.Path
[HL="#FFFF80"]If Not (Right$(Dir1.Path, 1) = "\") Then
Path1 = Dir1.Path & "\"
End If[/HL]
Text1.Text = Path1 & File1.FileName
End Sub