Beispiel #1
0
 public CFileTable(string sFileName)
 {
     SetFTState(FTState.fsInactive);
     FileName = sFileName;
     Columns  = new CColumns();
     Rows     = new CRows(this, Columns);
     if (File.Exists(FileName))
     {
         Load();
     }
 }
Beispiel #2
0
 public CColumn(CColumns aOwner, string aCaption, string aName, CColType aType)
 {
     Owner = aOwner; Caption = aCaption; Name = aName; ColType = aType;
 }
Beispiel #3
0
 public CRows(CFileTable aOwner, CColumns columns) : base()
 {
     Owner = aOwner;
     Cols  = columns;
 }