Beispiel #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);
            }
Beispiel #2
0
            protected bool CreateReport()
            {
                String strNameFull;

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

                this.Report = new CDataReport(strNameFull);
                if (!this.Report.Initialize())
                {
                    this.Error = this.Report.Error;
                    return(false);
                }
                else
                {
                    this.Report.WriteToFileOverwrite(this.Report.NameFull);
                }

                return(true);
            }