Hi, Everyone, I got this code and I want to open this help.txt file in a richtextbox, This is the code I have now.
8forall
Code:
Private Sub Help_Click()
If Dir(App.Path + "\Help.txt") <> "" Then
Else
MsgBox "Couldn't find file " & App.Path + "\Help.txt", vbInformation, "Info"
End If
End Sub