コード例 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                //binding force tbbm
                cmbTBBM.DataSource = MasterDataEntity.GetMasterDataTBBM(CommonDataModel.ActiveType.Active);
                cmbTBBM.DataBind();

                //binding force combobox
                cmbForce.DataSource = MasterDataEntity.GetMasterDataForce();
                cmbForce.DataBind();

                //binding unity combobox
                cmbUnity.DataSource = MasterDataEntity.GetMasterDataUnity();
                cmbUnity.DataBind();
            }
        }
コード例 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                //binding force tbbm
                cmbTBBM.DataSource = MasterDataEntity.GetMasterDataTBBM(CommonDataModel.ActiveType.Active);
                cmbTBBM.DataBind();

                //binding force combobox
                cmbForce.DataSource = MasterDataEntity.GetMasterDataForce();
                cmbForce.DataBind();

                //binding unity combobox
                cmbUnity.DataSource = MasterDataEntity.GetMasterDataUnity();
                cmbUnity.DataBind();

                //Report.xReportOAT report = new FrancoHandling_App.Report.xReportOAT();
                //docViewer.OpenReport(report);
            }
        }
コード例 #3
0
 protected void gv_DataBinding(object sender, EventArgs e)
 {
     gv.DataSource = MasterDataEntity.GetMasterDataTBBM(CommonDataModel.ActiveType.Active);
 }