Enlarge a linked window using VBA

M

michaelrlanier

I use the following code to open a Google Search window and place text ready for a search, but the window is minimized. I would like for it to open maximized. Can you offer a suggestion? Thanks.

If Range("F338").Value = Range("X340").Value Then
Dim Info As String
Dim FullURL As String
Info = Range("H337").Value & " smtp settings"
FullURL = "https://google.com/webhp?q=" & Info
ActiveWorkbook.FollowHyperlink Address:=FullURL
NewWindow = True
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top