Hi, I have search form. When I click on a button for a particular productID that I had searched earlier, the folder containing more details abt the product will open up. The code is such:
Private Sub DisplayDrawing_Click()
DisplayDrawing.HyperlinkAddress = "d:\Autocad\" & Combo31.Value
End Sub
however I would like it to display an error msg(in a msgbox) if the folder for a specific product id cannot be found. How do i check whether the link is valid and display this error msg?
Thanks for ur help
Private Sub DisplayDrawing_Click()
DisplayDrawing.HyperlinkAddress = "d:\Autocad\" & Combo31.Value
End Sub
however I would like it to display an error msg(in a msgbox) if the folder for a specific product id cannot be found. How do i check whether the link is valid and display this error msg?
Thanks for ur help