Search results

  1. M

    a login form with 2 accounts to have different privileges?

    Have you tried looking in the Tools-Security-Users and Group permissions menu?
  2. M

    Using bookmarks to insert data

    Maybe the wrong document is being searched? Documents.Add returns a document object - you should use this to search the bookmark. I would try something like the following with WordObj.Documents.Add Template:="G:\JLW Office Templates\Letter with logo.dot", NewTemplate:=False...
  3. M

    how to copy records/Recordset.

    INSERT INTO table1 SELECT * FROM table1 WHERE Year=xxxx
  4. M

    Adjusting Search Query to deal with empty Fields

    No reason why this shouldn't work. You should have a LEFT JOIN to the Owner table. What about the WHERE clause - how are you implementing the IS NULL test? In SQL, you should have something like: WHERE (OwnerDesc LIKE 'xxxxx' OR OwnerID IS NULL) AND ....... - note the brackets. In query design...
Back
Top Bottom