//初期表示 private void frmMain_Shown(object sender, EventArgs e) { try { //ログイン名称 label2.Text = "浅井 太郎"; //-------------------------------------- // 初期化 //-------------------------------------- //プログラムタイトルの設定 clsBfCom bfcom = new clsBfCom(); this.Text = bfcom.getProgramName(pb2com); //背景色等の設定 pb2com.gfncSetBackColor(this); // this.Activate(); } catch (NpgsqlException ex) { pb2com.ShowErrMsg(ex); this.Close(); return; } catch (Exception ex) { pb2com.ShowErrMsg(ex); this.Close(); return; } }
/// <summary> /// 表示イベント時の処理 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void frmMain_Shown(object sender, EventArgs e) { try { //-------------------------------------- // 初期化 //-------------------------------------- //プログラムタイトルの設定 clsBfCom bfcom = new clsBfCom(); this.Text = bfcom.getProgramName(pb2com); //背景色等の設定 pb2com.gfncSetBackColor(this); //編集・表示領域の初期化 InitializeEditArea(); //Sample ////コンボボックス用の設定 //gcComboBox1.Init(pb2com, "user_account", "pds_id", "password"); //gcComboBox1.SelectedIndex = 0; //データベースへの接続:データコンテキストのインスタンス化 dbc = new pgAccessModel(pb2com); // this.Activate(); } catch (NpgsqlException ex) { pb2com.ShowErrMsg(ex); this.Close(); return; } catch (Exception ex) { pb2com.ShowErrMsg(ex); this.Close(); return; } }