Search results

  1. D

    Encryption base and row level locking

    In SQL there is a timestamp datatype. You can give the column any name you like. Though I always call mine TimeStamp...just to keep it simple. Once you create the column in SQL, update your access table(s) with Linked Table Manager under the External data tab. That's all that you'll need...
  2. D

    Encryption base and row level locking

    I didn't see anywhere that you specifically mentioned that you had a split database with a SQL back end. Your issue just reminds me of when I made the switch to a SQL BE and an Access FE. With a SQL BE you must have a timestamp field or you get the exact issue you are reporting. Truthfully...
  3. D

    Encryption base and row level locking

    Do you have a timestamp field in the table?
  4. D

    Mail Merge from Access Form To Word Doc

    Hello Jeanette, I hope this message see you well. I was looking at my old conversations regarding Albert’s mail merge. I have been tasked with finding a way to select multiple documents from Albert’s mail merge menu to merge at once. Do you know how this can be accomplished? Or a good forum...
  5. D

    Trouble defining variables

    My apologies, I will do so in the future. David92595
  6. D

    Trouble defining variables

    Hello, I am having problems opening up a windows shell to a file path in a Module Function. I have it working as a sub, but am trying to convert to a module so it can be centrally located. I can get a basic explorer window to open RetVal = Shell("explorer.exe ") However, when I try to put in...
  7. D

    How To Store Attachments

    Hello, Basics: I'm running a SQL server 2008 R2 back end with an Access 2007 Front end. I need to find a way to attach documents via my access front end. I've done some research and there seems to be quite the debate about how this should be done. I don't have a full understanding about the...
  8. D

    Search For Record

    Follow up question: Before I posted, I converted the macro I was using to a module, which is how I got the code I posted. Now that I've made the changes to the code, how to I call the function inside the module. Module Name is: TS_Search Public Function name is: TS_Search() Does it...
  9. D

    Search For Record

    You forgot quotes before [TS], :D Thank you for the explaination, you've helped me solve more than one problem today, of that I'm sure. Thanks! David92595
  10. D

    Search For Record

    Hello, I'm in the (not) fun process of having to change the data type of our PK to accommodate new requirements set by our clients. So far the switch has been surprisingly painless, except for my current problem. Basics: Running Access 2007 Front end, SQL 2008 R2 Backend. I have an unbound...
  11. D

    Column History

    I don't think the perfect solution was figured out. But I was able to find some kind of a work around. I created a unbound combo box with an action after update with a macro. Action: SearchForRecord Argument: ="[ID] = " & Str(Nz(Screen.ActiveControl,0)) This has worked for my users...
  12. D

    Full Text Index Not Working

    I'm not indexing for queries. I'm indexing for data entry, and different parts of of different records are being added at different points. So I need a way to have our employees find the record in our DB so they can add addition information to a record. Having the table be the control source is...
  13. D

    Full Text Index Not Working

    I'm not running a query. I'm trying to index a table so searches, in our access front end will run quicker. we are currently having to wait a minute plus for a search, of a table of only 14,000 rows.
  14. D

    Full Text Index Not Working

    I tried your suggestion. Downside, it over rode the PK clustered index. So now our files are all out of order (they were ordered by PK). How do I create non clustered index's while still maintaining the clustered index as the primary index? David92595
  15. D

    Full Text Index Not Working

    Q: How many fields are you adding to this index? A: there are about 7 fields total that I've added to the index. They are our most searched by fields, Loan number, address, state, File status, ect. Q: Does it have to be a text search using a full text index? it would be much quicker to do...
  16. D

    Full Text Index Not Working

    Sure, I probably should have been more specific from the start, but I'm new to SQL... Our queries are running fine. My problem is with the "Find"/search function in our Access 2007 front end. Most specifically with one of our fields, Loan Number, which is a nvarchar(255). Usually it is a 9-12...
  17. D

    Full Text Index Not Working

    Hello, Basics: I'm running SQL Server 2008 R2 back end with access 2007 front end. I have a Full Text Index set up on our main table which is have set up to re-index every morning at 3am, or at least that's what I'm reading in the Properties of the table. However, day after day our...
  18. D

    Column History

    missinglinq Thank you for pointing that out. Our ID is a text field, which would defiantly alter things a bit. I've tried your code snippet and it still is not working, but if you have any other idea's your defiantly on the right track.
  19. D

    Column History

    I am trying to get column history to work in my database. I've read more posts than I care to count online with little to no luck. I know the CODE is: =ColumnHistory([RecordSource],"Comments","[ID]=" & Nz([ID],0)) But after I change our comments field to memo (already was) and change to...
  20. D

    Incorporate Intelli Type/Auto Fill into our database

    Because it's the owner of the company who is asking for this, and he doesn't want to use copy and paste, period; End-O-Story Thats why... :rolleyes:
Back
Top Bottom