Go

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 Go(  )

The Go method executes a navigate operation to the presentation object based on parameters within the current instance.

Returns

This method

Comments

This method works as a bridge to the central Navigate method. cMDIWindow.Navigate( ). For more detailed information please read documentation for that method.

Example

Add new C# coding sample.

Through the framework, each top level window has the rights to access the declared URL object named iURL.
This object is used by the framework and can be used by the application to navigate in the application.
Direct navigate by supplying the whole URL
Navigate( 'http://www.ifsab.com', METHOD_Execute )
Navigate by constructing an URL
iURL.SetProtocol( 'ifsapf' )
iURL.SetProgId( 'frmCustomerOrder' )
URL.iSearchItems.AddAttribute( 'ORDER_ID', '10' )
iURL.Go( )