I am writing a VB program that is required to open the web browser and display a site that is selected from a drop down list. I use the code below, where strName is the name from the dropdown list:
Dim strURL
Dim strName
strName = "
strURL = Shell("C:\Program Files\Internet Explorer\" _
& "Iexplore.exe " & strName)
When I execute the program the browser opens but is minimised - how do I maximise the browser automatically?
Dim strURL
Dim strName
strName = "
strURL = Shell("C:\Program Files\Internet Explorer\" _
& "Iexplore.exe " & strName)
When I execute the program the browser opens but is minimised - how do I maximise the browser automatically?