Code: Select all
RunProgram("http://www.google.com")I'm not sure if this is any kind of bug in PB, it might be that 98 just doesn't support this kind of thing.. If anyone has any more of a clue than I do on this please let me know!
Code: Select all
RunProgram("http://www.google.com")
What version of IE ?Karbon wrote:Under Windows 2000 and higher it opens the default browser and goes to www.google.com - under Windows 98 it does nothing..Code: Select all
RunProgram("http://www.google.com")
I'm not sure if this is any kind of bug in PB, it might be that 98 just doesn't support this kind of thing.. If anyone has any more of a clue than I do on this please let me know!
Code: Select all
ShellExecute_(0, "open", "http://www.purebasic.com", "", "", 0)

Its not me, it's Karbon.fweil wrote:NoahPhense,
If RunProgram does not apply, does ShellExecute() work for you ?
RgrdsCode: Select all
ShellExecute_(0, "open", "http://www.purebasic.com", "", "", 0)

Good Idea..fweil wrote:Sorry !
I should upgrade to 3.91 !
Code: Select all
http://www.google.com
Code: Select all
Windows.s = Space(256)
GetWindowsDirectory_(@Windows.s, 256)
RunProgram("iexplore.exe", "http://www.google.com", Windows.s)
Just an FYI, you don't want to run internet explorer, you would want to run explorer. You also would want to run explorer instead of start. Examples in Pseudocode:Windows.s = Space(256)
GetWindowsDirectory_(@Windows.s, 256)
RunProgram("iexplore.exe", "http://www.google.com", Windows.s)