Search results

  1. KeithG

    Graph in outlook message

    What do you mean by a graph in a graph?
  2. KeithG

    Security Help!

    If a user goes direclty to the MDB file and try to open it they will receive an error stating the do not have the nessary permissions.
  3. KeithG

    Table link manager

    Not sure if you can change a linked tables path in an MDE but if you can look into the TableDef object.
  4. KeithG

    Delete Certain Records with VBA

    Can you post your field and table names? Something like below should work Delete * from PermTable Where DrawingID In (Select DrawingID from TempTable)
  5. KeithG

    Printing report re-runs all queries

    Instead of using the reports record source property to view the records try useing the reports recordset property to retrieve the data from an open recordset. You can use the Load event to open the recordset and set the reports recordset property to the recordset you just opened. I believe this...
  6. KeithG

    Clearing Filters

    The FilterOn property should do the trick. Are you using query parameters not form filters, maybe?
  7. KeithG

    Adding information to a read-only table?

    I would go with option 2. You could create a query to link the two tables together to display the data.
  8. KeithG

    permissions on a drive

    I have done something like this before. What I did was use the FileSystemObject to first see if the path existed (read access), then see if I could create a text file, and then check to see if I could write to and delete the text file.
  9. KeithG

    Merge Colums in a query

    Why not just export the query to a spreadsheet?
  10. KeithG

    Merge Colums in a query

    You could use an update query but why would you want to store this if you can use the above expression to get the same result? Seems like a waste of space.
  11. KeithG

    Opening forms

    No problem glad I could help
  12. KeithG

    Opening forms

    try Docmd.echo false close form open form docmd.echo true
  13. KeithG

    Access 2007 User level Security Articles

    Yeah I saw that but thanks. It is a challange explaining to the project group why they got ride of ULS. I agrue that honestly since Access is a file server db your data is not truely safe anyways becuase the users need access to the file. So if someone knows what they are doing its only a matter...
  14. KeithG

    Access 2007 User level Security Articles

    Has anyone seen any good links to explain why Microsoft discontinued User Level Security in Access 2007? If so can you post the links. There is a debate at my work and I want to get all the infomation possible. It is my understanding that the beefed up the encryption on the standard password so...
  15. KeithG

    Auto populate current date

    So basically when the record is created you want to populate the date? If so go into the table design view and in the date fields default value Put either =Date() or =Now()
  16. KeithG

    Looking for a better way

    You could just use the left function to test the name if Left(FileName,6)="x_Choc" then ..... Else if Left(fileName,7)"x_Cocoa" then .... End if
  17. KeithG

    Please allow me to introduce myself...

    Thats a good one!
  18. KeithG

    I can't open my database, and am worried its died

    I would take this as a lesson and make sure you back up your db before working on design changes.
  19. KeithG

    DDESend or an alternative

    Look at the mail merge with Word feature in Access.
  20. KeithG

    Append to next record?

    what are the fileds names and the table name?
Back
Top Bottom