Exemple #1
0
            public new bool Create()
            {
                this.Msg    = null;
                this.Report = null;

                this.Data = this;


                this.SequencingDICTIONARY                   = null;
                this.LinkID_MenuToSequencingLIST            = null;
                this.LinkID_MenuToDescriptionSequencingLIST = null;
                this.LinkID_MenuToVariantLIST               = null;
                this.ID_MenuLIST     = null;
                this.ID_VariantLIST  = null;
                this.ID_TestStepLIST = null;
                this.FlagTestStepCancelTestIfErrorID_LIST = null;
                this.FlagTestStepRunOnlyIfGoodLIST        = null;

                this.DBFColumnFirstError           = 0;
                this.DBFColumnMeasValue            = 0;
                this.DBFColumnLSL                  = 0;
                this.DBFColumnUSL                  = 0;
                this.DBFColumnDBFColumnOfMeasValue = 0;

                return(true);
            }
Exemple #2
0
            protected bool CreateDB()
            {
                String strNameFull;

                strNameFull = this.Path + "\\" + this.NameShort + ".msg";

                this.Msg = new CDataMsg(strNameFull);
                if (!this.Msg.Initialize())
                {
                    this.Error = this.Msg.Error;
                    return(false);
                }

                return(true);
            }
Exemple #3
0
            protected bool CreateMsg()
            {
                String strNameFull;

                if (this.DirectoryOfFFTSystem == null)
                {
                    strNameFull = this.Path + "\\" + this.NameShort + ".msg";
                }
                else
                {
                    strNameFull = System.IO.Path.Combine(this.DirectoryOfFFTSystem, this.NameShort + ".msg");
                }


                this.Msg = new CDataMsg(strNameFull);
                if (!this.Msg.Initialize())
                {
                    this.Error = this.Msg.Error;
                    return(false);
                }

                return(true);
            }