コード例 #1
0
ファイル: eLoanMain.cs プロジェクト: britzer0683/eLoanManager
        private void txtCode_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e)
        {
            DevExpress.XtraEditors.TextEdit txt1 = (DevExpress.XtraEditors.TextEdit)sender;

            GuarantorFinancerInfo oForm = new GuarantorFinancerInfo();
            oForm.eLoanMainMenu = this;
            oForm.ConnectionString = this.ConnectionString;
            oForm.OpenGuarantorInfo(txt1.Text);
            oForm.ShowDialog();
        }
コード例 #2
0
        private void barNew_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            GuarantorFinancerInfo oForm = new GuarantorFinancerInfo();

            oForm.ConnectionString = this.ConnectionString;

            oForm.MdiParent = this.MdiParent;
            oForm.Show();
        }
コード例 #3
0
ファイル: eLoanMain.cs プロジェクト: britzer0683/eLoanManager
        private void barGuarantorFinancer_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            GuarantorFinancerInfo oForm = new GuarantorFinancerInfo();

            oForm.eLoanMainMenu = this;
            oForm.ConnectionString = this.ConnectionString;
            oForm.ShowDialog();
        }