Esempio n. 1
0
 /// <summary>
 /// This form will just show the user a welcome message, this is mainly for showing the name the user has selected.
 /// </summary>
 /// <param name="fn">The Form_Name form</param>
 /// <param name="name">The name of the user</param>
 public Form_Welcome(Form_name fn, String name)
 {
     InitializeComponent();
     FormSelect = new Form_Select(fn, name);
     label1.Text = "Welkom " + name;
     this.Size = label1.Size;
 }
Esempio n. 2
0
 /// <summary>
 /// This form will gives the user the option to start a test or see his results.
 /// </summary>
 /// <param name="fn">The Form_Name form</param>
 /// <param name="Name">The name of the user</param>
 public Form_Select(Form_name fn, String Name)
 {
     InitializeComponent();
     FormName = fn;
     StudentName = Name;
 }