Exemplo n.º 1
0
            protected bool CreateDBF(String _NameFullDBF, ref CDataDBF _RefDBF)
            {
                _RefDBF = new CDataDBF(_NameFullDBF);
                if (_RefDBF.GetError() != 0)
                {
                    this.Error = _RefDBF.Error;
                    return(false);
                }

                return(true);
            }
Exemplo n.º 2
0
            protected bool CreateDBF()
            {
                String strNameFull;

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

                this.DBF = new CDataDBF(strNameFull);
                if (this.DBF.GetError() != 0)
                {
                    this.Error = this.DBF.Error;
                    return(false);
                }

                return(true);
            }