Windows

Windows are non-modal, meaning that they can remain open while other elements of your Visual Basic GUI can be used. You can show and hide Epson RC+ windows from your Visual Basic program.

For example, to open and close the I/O Monitor window:

  m_spel.ShowWindow(RCAPINet.SpelWindows.IOMonitor, Me)  
  m_spel.HideWindow(RCAPINet.SpelWindows.IOMonitor)  

You can show and hide Epson RC+ windows from your C# program.

  m_spel.ShowWindow(RCAPINet.SpelWindows.IOMonitor, this);  
  m_spel.HideWindow(RCAPINet.SpelWindows.IOMonitor);  
WindowID Window
RCAPINet.SpelWindows.IOMonitor IO monitor
RCAPINet.SpelWindows.TaskManager Task Manager
RCAPINet.SpelWindows.ForceMonitor Force Monitor
RCAPINet.SpelWindows.Simulator Simulator


I/O Monitor Window