dbrelationupdatecascade

Serwis wyszukanych fraz

Czym zajmuje się KAMIENIARSTWO ?

Temat: ustawienie relacji
...ale metoda obiektu database przyklad prosto z helpa Sub NewRelation()  Dim dbs As Database, rel As Relation, fld As Field  ' Return reference to current database.  Set dbs = CurrentDb  ' Create new Relation object and specify foreign table.  Set rel = dbs.CreateRelation("CategoryProducts", "Categories", "Products")  ' Set attributes to enforce referential integrity.  rel.Attributes = dbRelationUpdateCascade And dbRelationDeleteCascade  ' Create field in Relation object.  Set fld = rel.CreateField("CategoryID") ' Specify field name in foreign table.  fld.ForeignName = "CategoryID"  ' Append Field object to Fields collection of Relation object.  rel.Fields.Append fld  ' Append Relation object to Relations collection.  dbs.Relations.Append rel...
Źródło: topranking.pl/1248/ustawienie,relacji.php



Temat: Tworzenie relacji z VBA
...        End With         .TableDefs.Append tdfNew         ' Create EmployeesDepartments Relation object, using         ' the names of the two tables in the relation.         Set relNew = .CreateRelation("EmployeesDepartments", _             tdfNew.Name, tdfEmployees.Name, _             dbRelationUpdateCascade)         ' Create Field object for the Fields collection of the         ' new Relation object. Set the Name and ForeignName         ' properties based on the fields to be used for the         ' relation.         relNew.Fields.Append relNew.CreateField("DeptID")        ...
Źródło: topranking.pl/1249/tworzenie,relacji,z,vba.php


Temat: vba - ustawianie parametru relacji
witam potrzebuje z poziomu vba ustawic aby relacja kaskadowo zmieniala i usuwala rekordy powiazane Set rel = db.CreateRelation("umowydokumentacje") rel.Table = "umowy" rel.ForeignTable = "dokumentacje" rel.Attributes = dbRelationDeleteCascade rel.Attributes = dbRelationUpdateCascade jak ustawic kilka atrybutów naraz ? - gdyz ustawiany jest ten podany zawsze jako ostatni  pozdrawiam
Źródło: topranking.pl/1250/vba,ustawianie,parametru,relacji.php


  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • pozycb.opx.pl
  •