Hi,
I need to load the "https" version instead of "http" using the ShellExecute routine below. Any idea how this can modified? Thanks, Stanley
I need to load the "https" version instead of "http" using the ShellExecute routine below. Any idea how this can modified? Thanks, Stanley
Code:
Declare Integer ShellExecute In shell32.Dll ;
INTEGER hndWin, ;
STRING cAction, ;
STRING cFileName, ;
STRING cParams, ;
STRING cDir, ;
INTEGER nShowWin
cFileName = '[URL unfurl="true"]www.'[/URL] + Alltrim(Thisform.txtSldnTldn.Value)
cAction = "open"
ShellExecute(0, cAction, cFileName, "", "", 1)