예제 #1
0
 private void InitMyComponents()
 {
     txtOwner.Text     = "MYTEST";
     txtTableName.Text = ConfigurationManager.AppSettings["defTableName"];
     txtDiscFld.Text   = ConfigurationManager.AppSettings["defDiscFld"];
     oBl = new ExplodePackageTemplate(txtOwner.Text, txtTableName.Text, txtDiscFld.Text);
 }
예제 #2
0
        private void InitMyComponents()
        {
            this.Text     = this.Text + " (" + this.Name + ")";
            this.owner    = ConfigurationManager.AppSettings["defOwner"];
            txtOwner.Text = this.owner;
            // this.oraMetaBL = new OracleMetadataBL(txtTableName.Text, txtDiscFld.Text);
            txtTableName.Text = ConfigurationManager.AppSettings["defTableName"];
            txtDiscFld.Text   = ConfigurationManager.AppSettings["defDiscFld"];
            this.expandCode   = new ExplodePackageTemplate(this.owner, txtTableName.Text, txtDiscFld.Text);

            //string pathBodyFile = ConfigurationManager.AppSettings["pathBody"];
            LoadTemplates();
        }