private void HelpButton_Click(object sender, EventArgs e)
        {
            Hide();
            Help_Form HelpBox = new Help_Form("Potentiometer Help:", "This program demonstrates potential dividers to create an output voltage different to that of the input. \n Hopefully using this software you can also deduce how a slide potentiometer works");

            HelpBox.ShowDialog();
            Show();
        }
Beispiel #2
0
        private void HelpButton_Click(object sender, EventArgs e)
        {
            Hide();
            Help_Form HelpPage = new Help_Form("Custom Circuit Builder Help:", "This Program allows you to dynamicly add resistors and measure the affect on the circuit\nSelect the Action You would like to be performed\nThen select the Component you would like it to be performed on\nClicking on the Arms of a Parrallel Component selects the entire parrallel section\nSelecting the EMF Source will allow you to change its value");

            HelpPage.ShowDialog();
            Show();
        }
        private void HelpButton_Click(object sender, EventArgs e)
        {
            Hide();
            Help_Form help_ = new Help_Form("Settings Help:", "These settings control system wide things like colour scheme and other cool things\nYou can Load and Save Settings\nColours are enter in the #RRGGBB Format where each is a hex value corresponding from 0 to 255 amounts");

            help_.ShowDialog();
            Show();
        }