OpenURL

From Lazarus wiki
Revision as of 22:56, 17 July 2015 by FTurtle (talk | contribs)
Jump to navigationJump to search

Definition

Unit: Lazarus lclintf

function OpenURL(AURL: String): Boolean;

Official documentation: [1]

Description

openurl opens an URL with the default/registered web browser as specified by the operating system.

Apparently spaces need to be encoded (as %20); see [2]

Warning-icon.png

Warning: On Windows with Lazarus versions older than development version r40490 (2013-03-06), opening an URL using the file:// URI scheme (to open a local file) may fail if there are spaces in the filename.
With those older Lazarus versions, you should enclose the entire string in double quotes, if you are on an NT platform.
This is unfortunately system and browser dependant. Note: opening a file:// URL with spaces on Win9x will probably fail if you enclose the URL in quotes (See bug 21659 in the bugtracker).
On Windows it is preferable to not use OpenUrl with file:// URI scheme, but use OpenDocument with the filename instead because of the above mentioned problems.
When using the file:// URI scheme, you should not escape spaces with %20.

Example

uses 
...
lclintf
...
OpenURL('http://wiki.lazarus.freepascal.org/');