ShowWindow Method

Description
Displays an Epson RC+ 8.0 window.

Syntax
Sub ShowWindow (WindowID As SpelWindows [, Parent As Form])

Parameters

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

Remarks
You can use the Parent parameter to specify the .NET parent form for the window. If you cannot use a .NET parent form, you must omit the Parent parameter and use the ParentWindowHandle property to set the handle of the parent.

See Also
HideWindow Method, ParentWindowHandle Property, RunDialog Method

ShowWindow Example
VB Example:

Sub btnShowIOMonitor_Click( _  
       ByVal sender As System.Object, _  
       ByVal e As System.EventArgs) _  
       Handles btnShowIOMonitor.Click  
  
    m_spel.ShowWindow(RCAPINet.SpelWindows.IOMonitor, Me)  
End Sub  

C# Example:

void btnShowIOMonitor_Click(object sender, EventArgs e)  
{  
	m_spel.ShowWindow(RCAPINet.SpelWindows.IOMonitor, this);  
}