Can I get a shortcut I write to the desktop during install to use IE even if it is not the default browser on the users machine ?
Thanks
Professional Software Development Tools
Can I get a shortcut I write to the desktop during install to use IE even if it is not the default browser on the users machine ?
Thanks
you should make the shortcut to point to IE with the url you want to be opened set as a parameter,like
----
iexplore.exe "http://www.indigorose.com"
----
This is the current line I use
Shell.CreateShortcut(Shell.GetFolder(SHF_STARTMENU PROGRAMS).."\\%ProductName%", "XYZ", "http://www.XYZ.com", "", "", SessionVar.Expand("%AppFolder%\\XYZ.ico"), 0, SW_SHOWNORMAL, nil, "");
How would I force this shortcut to use IE ? I tried a couple of things, but could not get it to work...
Thanks
Can anybody help with this ? still looking for a resolution...
Thanks
This line of code works on my system, but it does reply on iexplore.exe being installed to the Program Files directory.
Adam KapilikCode:Shell.CreateShortcut(Shell.GetFolder(SHF_DESKTOP), "Shortcut to My File", SessionVar.Expand("%ProgramFilesFolder%\\Internet Explorer\\iexplore.exe"), "http://www.indigorose.com", SessionVar.Expand("%ProgramFilesFolder%\\Internet Explorer"), "", 0, SW_SHOWNORMAL, nil, "");
Hi This works thanks....
Is there any way I can check if IE is installed ? and perhaps show an error dialogue if it is not ?