My code below keeps giving me the ERROR 94 : Invalid Null.
The debugger highlights : strSong = Me!txtSong
-------- Heres my code --------
strSong = Me!txtSong
---------------------------------
Question : What do I need to add to that line to make it accept the text entered into txtSong & perform the search?
Thanks in advance!
Jerry
The debugger highlights : strSong = Me!txtSong
-------- Heres my code --------
Code:
Private Sub OLEUnbound122_Click()
Dim strPrefix As String, strSuffix As String, strSong As String
strPrefix = "[URL unfurl="true"]http://shop.gospeland.com/gospeland/advSearch.asp?mode=search&txtTitle="[/URL]
Code:
strSuffix = "&selQuickSearch=SongTitle&Submit1=Search"
Application.FollowHyperlink strPrefix & strSong & strSuffix, , True
End Sub
Question : What do I need to add to that line to make it accept the text entered into txtSong & perform the search?
Thanks in advance!
Jerry