BrowsePage

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

SalBoolean BrowsePage( String sUrl )

The BrowsePage method opens a url for browsing

Parameters

Name Description
SalString sUrl Unified Resource Locator of the web page to open.

Returns

The return value is TRUE if the method succeeds and FALSE if it fails.

Comments

Since the BrowsePage method may use any browser installed on the client computer it is recommended to always use complete url's (including the "http://" or "File://" prefix and the file name. Although most browsers accept simplified addresses, not all do. For example specify "http://www.ifsab.com/Index.htm" instead of just "www.ifsab.com".

Example

Call BrowsePage( 'http://www.ifsab.com/Index.htm' )
C# coding
Ifs.Fnd.ApplicationForms.Int.BrowsePage( "http://www.ifsab.com/Index.htm" );