PA_OpenURL

4D - Documentation   Français   English   German   4D Plugin API, Command Theme List   4D Plugin API, Command Alphabetical List   Back   Previous   Next

version 2003


PA_OpenURL (url; len)

ParameterTypeDescription
urlchar *URL to open
lenlongLength of URL

Description

The routine PA_OpenURL launches your Web browser and opens it to the URL passed in the url parameter, of length len.

This is like the OPEN WEB URL command (except that there is no optional parameter in this API), please refer to the 4th Dimension Language Reference manual for more information.

Example

Open the 4D, SA Home Page.

   char   homePage4D[] = "http://www.4d.fr/";
   PA_OpenURL(homePage4D, strlen(homePage4D));

See Also

OPEN WEB URL.

Error Handling

PA_GetLastError always returns eER_NoErr


4D - Documentation   Français   English   German   4D Plugin API, Command Theme List   4D Plugin API, Command Alphabetical List   Back   Previous   Next