|  | CSYSiRunGX Method (CGXNETCore, IWin32Window, String) | 
 Run a GX.
 
    Namespace: 
   GeoEngine.Core.GXNetX
    Assembly:
   geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2025.1.0.25
 Syntax
Syntaxpublic static int iRunGX(
	CGXNETCore gxNetShared,
	IWin32Window owner,
	string gx
)
public static int iRunGX(
	CGXNETCore gxNetShared,
	IWin32Window owner,
	string gx
)
Public Shared Function iRunGX ( 
	gxNetShared As CGXNETCore,
	owner As IWin32Window,
	gx As String
) As Integer
Public Shared Function iRunGX ( 
	gxNetShared As CGXNETCore,
	owner As IWin32Window,
	gx As String
) As Integer
public:
static int iRunGX(
	CGXNETCore^ gxNetShared, 
	IWin32Window^ owner, 
	String^ gx
)
public:
static int iRunGX(
	CGXNETCore^ gxNetShared, 
	IWin32Window^ owner, 
	String^ gx
)
static member iRunGX : 
        gxNetShared : CGXNETCore * 
        owner : IWin32Window * 
        gx : string -> int 
static member iRunGX : 
        gxNetShared : CGXNETCore * 
        owner : IWin32Window * 
        gx : string -> int 
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
 A shared CGXNETCore
- owner
- Type: System.Windows.FormsIWin32Window
 The IWin32Window the message box will display in front of.
- gx
- Type: SystemString
 Name of GX to run.
Return Value
Type: 
Int32
Exit status of the GX:
-1 cancelled
0 success
1 ended with an error.
 Remarks
Remarks
If the called GX returns an error, they will not be
displayed until the "top" calling GX terminates, unless you
call ShowError_SYS.
 See Also
See Also