Hi all I have been running adsense and google search on my website for about 4 years I sell roof estimating software. I want to add google search to my vb estimating software. I can open the search like this: Private Sub SearchGoogle(strSearchString As String) If InStr(1, strSearchString, " ") Then strSearchString = Replace(strSearchString, " ", "+") End If Call ShellExecute(Me.hWnd, "Open", "www.google.com/search?hl=en&q=" & strSearchString & "&meta=", _ vbNullString, vbNullString, vbNormal) End Sub and call it like this: Call SearchGoogle(txtGoogleSearch) How can i add my account number into this code?http://forums.digitalpoint.com/images/icons/icon5.gif Question