Beispiel #1
0
        private void btnHome_Click(object sender, EventArgs e)
        {
            FormUtama form = new FormUtama(tbTotalFC.Text);

            form.Show();

            this.Hide();
        }
Beispiel #2
0
 private void btnConfirm_Click(object sender, EventArgs e)
 {
     if (tbPrice.Text != "")
     {
         FormUtama form = new FormUtama(tbPrice.Text);
         form.Show();
         this.Hide();
     }
     else
     {
         MessageBox.Show("Silahkan Isi Nilai Sale Price!");
     }
 }