• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need help with Visual Basic shellExecute function...

Chewy

Senior member
I'm trying to open a browser WITHOUT the toolbar in VB. I got the browser to open with the ShellExecute function, but not sure how to "manipulate" it to open w/out the toolbar...

The function is as follows:
Private Declare Function ShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" (ByVal hWnd As Long, _
ByVal lpOperation As String, ByVal lpFile As String, _
ByVal lpParameters As String, ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long

I'm guessing maybe I can use the lpParameters, but I don't know what they are! 🙂

And yes, I know if I had the browser set w/out a toolbar as default, it would work, but I'm trying to force that when it's not set. 🙂 Thanx
 
Back
Top