RunDialog メソッド

解説
Epson RC+ 8.0ダイアログを実行します。

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

パラメーター

  • DialogID
    実行するEpson RC+ 8.0ダイアログのID
  • Parent
    ウィンドウのペアレントになる.NETフォーム(省略可)

参照
ShowWindow メソッド

RunDialog使用例
VB 例:

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

C# 例:

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