Difference between revisions of "OpenURL"

From Lazarus wiki
Jump to navigationJump to search
m (→‎Definition: Fix wiki markup)
(→‎See also: New section)
Line 25: Line 25:
 
On Windows it is preferable to not use <syntaxhighlight lang=pascal inline>OpenUrl</syntaxhighlight> with the file:// URI scheme, but use [[opendocument|OpenDocument]] with the filename instead because of the above mentioned problems.
 
On Windows it is preferable to not use <syntaxhighlight lang=pascal inline>OpenUrl</syntaxhighlight> with the file:// URI scheme, but use [[opendocument|OpenDocument]] with the filename instead because of the above mentioned problems.
  
==Example==
+
== Example ==
 +
 
 
<syntaxhighlight lang="pascal">
 
<syntaxhighlight lang="pascal">
 
uses  
 
uses  
Line 31: Line 32:
 
lclintf
 
lclintf
 
...
 
...
OpenURL('http://wiki.lazarus.freepascal.org/');
+
OpenURL('https://wiki.lazarus.freepascal.org/');
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
== See also ==
 +
 +
* [[opendocument|OpenDocument]]
 +
* [[macOS Open Sesame|macOS open]]
 +
 
[[category:Lazarus]]
 
[[category:Lazarus]]
 
[[category:lclintf]]
 
[[category:lclintf]]
 
[[Category:Inter-process communication]]
 
[[Category:Inter-process communication]]

Revision as of 13:49, 29 March 2021

Definition

Unit: Lazarus lclintf

function OpenURL(AURL: String): Boolean;

Official documentation: OpenUrl

Description

OpenUrl opens a URL with the default/registered/preferred web browser as specified by the operating system.

Spaces in URLs need to be encoded as %20; see RFC1738. When using the file:// URI scheme, you should not encode spaces with %20.

Warning

On Windows with Lazarus versions older than revision r40490 (2013-03-06), opening a 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 quotation marks, 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 quotation marks (See Issue #21659).

On Windows it is preferable to not use OpenUrl with the file:// URI scheme, but use OpenDocument with the filename instead because of the above mentioned problems.

Example

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

See also