The following code uses GetOpenFilename method to select the Webpage (HTML here)
Sub Select_A_HTMLPAGE() Dim fHTML As Variant fHTML = Application.GetOpenFilename("Webpage (*.htm*), *.htm*", _ , "Select a HTML page:") If fHTML <> False Then MsgBox "Selected file is" & CStr(fHTML) End If End Sub
No comments:
Post a Comment