Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: H82W8
  • Order by date
  1. H82W8

    Replication Conflicts

    Synch more frequently. Use Replman.exe (Replication Manager provided with MOD) http://msdn.microsoft.com/library/default.asp?url=/archive/en-us/dnaraccgen/html/msdn_replicat.asp
  2. H82W8

    Define PK using code

    Correcting the sequence of commands... DoCmd.RunSQL "SELECT * INTO tblTest FROM [Control Plan];" DoCmd.RunSQL "ALTER TABLE tblTest " & _ "ADD CONSTRAINT makePK PRIMARY KEY ProjectNo);" OR dbs.Execute "SELECT * INTO tblTest FROM [Control...
  3. H82W8

    Define PK using code

    Using Access 2000, the following worked for me dbs.Execute "ALTER TABLE tblTest " & _ "ADD CONSTRAINT makePK PRIMARY KEY (ProjectNo)" DoCmd.RunSQL "ALTER TABLE tblTest " & _ "ADD CONSTRAINT makePK PRIMARY KEY...
  4. H82W8

    Transposed Query Question

    TRANSFORM Max(tblTest.Result) AS MaxOfResult SELECT tblTest.Date FROM tblTest GROUP BY tblTest.Date PIVOT tblTest.Chemical; I used max here but use whichever aggregate Fn you need (perhaps Sum() or Last(), etc). If there is only one, Max works nicely.
  5. H82W8

    Synchronize via button. Can this be done?

    Allow users to synch with the design master when they feel like it? Are you sure you want that? What if you are working on the design master doing testing of new functionality and such. Meanwhile, a user decides to activate the design master synch? Keep the design master out of the synch...
  6. H82W8

    really quick "subform ?" or, long "whats the best approach ?&quot

    'Important: Differentiate between a form, a subform, and a subform control 'The first two are forms; the third is a control which is placed on a form and 'points to another form. 'frmSub is NOT necessarily the name of the source subform. Rather it is the name of 'the control I placed on my form...

Part and Inventory Search

Back
Top