Example #1
0
        private void searchKategoriButton_Click(object sender, EventArgs e)
        {
            dataKategoriProdukForm displayedForm = new dataKategoriProdukForm(globalConstants.PRODUK_DETAIL_FORM, this);

            displayedForm.ShowDialog(this);

            loadKategoriIDInformation();
        }
        private void searchKategoriButton_Click(object sender, EventArgs e)
        {
            if (null == selectKategoriForm || selectKategoriForm.IsDisposed)
            {
                selectKategoriForm = new dataKategoriProdukForm(globalConstants.PRODUK_DETAIL_FORM, this);
            }

            selectKategoriForm.Show();
            selectKategoriForm.WindowState = FormWindowState.Normal;
        }