QUESTION 1

How Can I say open a like open a text file in vb,not into a text window or anything realted to the program, but in the text editor, but not using the shell command.


Question 2

How does the error command work all i have is

Private Sub Command1_Click()
On Error GoTo IEERROR
Shell "C:\Program Files\Internet Explorer\IEXPLORE.EXE " + "http://www.yahoo.com", vbNormalFocus
End Sub

Sub IEERROR()
MsgBox "IE NOT FOUND PLEASE COPY PROVIDED LINK.", vbExclamation, "UPDATE ERROR"
End Sub