Usually, I use: ShellExecute(0, 'OPEN', PChar(edtURL.Text), '', '', SW_SHOWNORMAL);

How can I have the same behaviour (opening a link in the default browser), on all platforms (Windows and OSX)?

link|improve this question

1  
You should post this solution as an answer and accept it. I'll give a +1 :-) – Leonardo Herrera Sep 16 '11 at 13:47
1  
Agreed. Separate your answers from the questions. That's how it's supposed to be done here on StackOverflow :-) – LachlanG Sep 17 '11 at 0:55
You can indeed answer your own question. It is encouraged and not frowned upon: blog.stackoverflow.com/2011/07/… If your answer is sufficiently different from the other answers or combines them in some way, even accepting your own answer is usually not frowned upon. – Marjan Venema Sep 17 '11 at 9:19
Ok, I move it... please consider to give +1 to mjn's answer as this code is only a translation of what he explaned me ;o) – Whiler Sep 17 '11 at 9:26
feedback

3 Answers

up vote 4 down vote accepted

In the FireMonkey discussion forum I found this code for a question about NSWorkspace.URLForApplicationToOpenURL:

uses
  Posix.Stdlib;
....
  _system(PAnsiChar('open ' + ACommand));

(not tested by me)


Update: Posix is not avalaible on Windows so it is not possible to write a solution which uses the same OS calls on all platforms. I suggest to move such code in a central 'XPlatform' unit which has some IFDEF POSIX etc.

link|improve this answer
I try (on Windows) and let you know... – Whiler Sep 16 '11 at 10:58
;o( this unit doesn't exist in XE2... – Whiler Sep 16 '11 at 11:00
I understand the ifdef... but I don't know how to build an application with uses that doesn't exist ;o( – Whiler Sep 16 '11 at 11:06
1  
If you switch to OSX platform in the project view, the Posix units will be found. – mjn Sep 16 '11 at 11:10
Thank you for the trick! – Whiler Sep 16 '11 at 11:47
show 1 more comment
feedback

Regarding the answer of mjn, I have written the following unit. I have successfully tested it on Windows but I don't have an OSX to test it on this platform. If someone can confirm it works, I'd appreciate.

unit fOpen;

interface

uses
{$IFDEF MSWINDOWS}
  Winapi.ShellAPI, Winapi.Windows;
{$ENDIF MSWINDOWS}
{$IFDEF POSIX}
  Posix.Stdlib;
{$ENDIF POSIX}

type
  TMisc = class
    class procedure Open(sCommand: string);
  end;

implementation

class procedure TMisc.Open(sCommand: string);
begin
{$IFDEF MSWINDOWS}
  ShellExecute(0, 'OPEN', PChar(sCommand), '', '', SW_SHOWNORMAL);
{$ENDIF MSWINDOWS}
{$IFDEF POSIX}
  _system(PAnsiChar('open ' + AnsiString(sCommand)));
{$ENDIF POSIX}
end;

end.

and I call it like this:

TMisc.Open('http://stackoverflow.com/questions/7443264/how-to-open-an-url-with-the-default-browser-with-firemonkey-cross-platform-applic');
link|improve this answer
1  
Tested on Windows 32 & 64bits and on mac OSX: it works ;o) – Whiler Sep 21 '11 at 18:01
feedback

And now a C++ version (OSx code untested, also not sure about the _POSIX #def):

#ifdef _Windows
    #include <Winapi.Windows.hpp>
#endif // _Windows
#ifdef _POSIX
    #include <Posix.Stdlib.h>
#endif // _POSIX
void OpenCommand(String _sCommand)
{
#ifdef _Windows
    ShellExecute(0, _T("open"), _sCommand.c_str(), _T(""), _T(""), SW_SHOWNORMAL);
#endif // _Windows
#ifdef _POSIX
  _system(AnsiString("open " + AnsiString(_sCommand)).c_str());
#endif // _POSIX
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.