I have label on form which assigned to ShellExecute command ... it is for to download an exe. from web ..
I have label caption [Opera.exe]
I want when label with caption Opera.exe is clicked .. Direct Download window should open without opening a browser
I have label caption [Opera.exe]
Code:
Private Sub Label1_Click()
ShellExecute ByVal 0&, "open", _
"http://get.geo.opera.com/pub/opera/desktop/15.0.1147.148/win/Opera_15.0.1147.148_Setup.exe", _
vbNullString, vbNullString, _
SW_SHOWMAXIMIZED
End Sub