RunDialog Method

Description
Runs an Epson RC+ 8.0 dialog.

Syntax
Sub RunDialog (DialogID As SpelDialogs [, Parent As Form])

Parameters

  • DialogID
    The dialog ID of the Epson RC+ 8.0 to run.
  • Parent
    Optional. A .NET form that is the parent of the window.

See Also
ShowWindow Method

RunDialog Example
VB Example:

Sub btnRobotManager_Click( _  
       ByVal sender As System.Object, _  
       ByVal e As System.EventArgs) _  
       Handles btnRobotManager.Click  
  
    m_spel.RunDialog(SpelDialogs.RobotManager)  
End Sub  

C# Example:

void btnRobotManager_Click(object sender, EventArgs e)  
{  
	m_spel.RunDialog(SpelDialogs.RobotManager);  
}