Thanks for the quick response, Archie!
After a little experimentation, what I ended up doing was to keep everything on one form, but use Containers Panels to contain the controls I want on each "screen". Then I use a row of buttons to select the Visibility properties.
private void panel1Button_Click()
{
panel1.Visible = true;
panel2.Visible = false;
panel3.Visible = false;
}
private void panel2Button_Click()
{
panel1.Visible = false;
panel2.Visible = true;
panel3.Visible = false;
}
private void panel3Button_Click()
{
panel1.Visible = false;
panel2.Visible = false;
panel3.Visible = true;
}
Not sure what I'll do if I need to turn off PLC data on the invisible panels...
LarGriff