Esempio n. 1
0
 ///<summary>
 ///FormMove
 ///戻るボタンの処理
 ///</summary>
 public void FormMove(int intFrmKind)
 {
     //全てのフォームの中から
     foreach (System.Windows.Forms.Form frm in Application.OpenForms)
     {
         //業種のフォームを探す
         if (intFrmKind == CommonTeisu.FRM_GYOSHU && frm.Name.Equals("M1060_Gyoshu"))
         {
             //データを連れてくるため、newをしないこと
             M1060_Gyoshu gyoshu = (M1060_Gyoshu)frm;
             gyoshu.setGyoushuListClose();
             break;
         }
     }
 }
Esempio n. 2
0
        ///<summary>
        ///getSelectItem
        ///データグリッドビュー内のデータ選択後の処理
        ///</summary>
        public void getSelectItem(int intFrmKind, string strSelectId)
        {
            //SQL実行時に取り出したデータを入れる用
            DataTable dtSelectData;

            //SQLのインスタンス作成
            DBConnective dbconnective = new DBConnective();

            try
            {
                //SQLファイルのパスとファイル名を入れる用
                List <string> lstStringSQL = new List <string>();

                //SQLファイルのパスとファイル名を追加
                lstStringSQL.Add("Common");
                lstStringSQL.Add("C_LIST_Gyoshu_SELECT_LEAVE");

                //SQL発行
                OpenSQL opensql = new OpenSQL();

                //SQLファイルのパス取得
                string strSQLInput = opensql.setOpenSQL(lstStringSQL);

                //SQLファイルと該当コードでフォーマット
                strSQLInput = string.Format(strSQLInput, strSelectId);

                //パスがなければ返す
                if (strSQLInput == "")
                {
                    return;
                }

                //SQL接続後、該当データを取得
                dtSelectData = dbconnective.ReadSql(strSQLInput);

                //移動元フォームの検索
                switch (intFrmKind)
                {
                //業種
                case CommonTeisu.FRM_GYOSHU:
                    //全てのフォームの中から
                    foreach (System.Windows.Forms.Form frm in Application.OpenForms)
                    {
                        //業種のフォームを探す
                        if (frm.Name.Equals("M1060_Gyoshu"))
                        {
                            //データを連れてくるため、newをしないこと
                            M1060_Gyoshu gyoshu = (M1060_Gyoshu)frm;
                            gyoshu.setGyoushu(dtSelectData);
                            break;
                        }
                    }
                    break;

                default:
                    break;
                }
            }
            catch (Exception ex)
            {
                throw (ex);
            }
            finally
            {
                //トランザクション終了
                dbconnective.DB_Disconnect();
            }
        }