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 Chriss Miller 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: *

  1. payback

    Access 2003 Runtime or Full version?

    Have a look at - http://www.allenbrowne.com/ser-53.html Lots of good utilities and assistance available on his site.
  2. payback

    Updating Frontend

    This really works well for me. http://www.dbforums.com/6274786-post19.html
  3. payback

    Life beyond Access

    I agree with Joe. I have been developing in Access since 1997 (currently in Access 2007) and recently did a review of a client's needs looking at many options including opensource software. Although it is going to be hard to "teach an old dog new tricks", I have recently started to teach...
  4. payback

    Msg After Procedure Runs

    Have a look at the NOCOUNT option in the SQL documentation.
  5. payback

    Locking record when form loads

    Have a look at this thread - thread181-1283568. I use it sucessfully every day.
  6. payback

    large access database has no data?

    Is it possible that the developer has hidden all these things? Try TOOLS -> OPTIONS -> and on the VIEW tab select SHOW HIDDEN OBJECTS
  7. payback

    Locking Table in Multi User

    I use a locking table and appropriate code to - 1. Flag the record as locked when the first user accesses it 2. Keep it "locked" and let anyone else who tries to access it know that they can not 3. When the first user as finshed with that record, "unlock" it I know that Access etc. has its own...
  8. payback

    I need to export data into a sequential text file.

    Have a look at thread181-987955
  9. payback

    How to set a default file location for the 'output to' function

    Is this what you need? Function FindSnapshotReports(strSearchPath) As String On Error GoTo Errorhandler Dim msaof As MSA_OPENFILENAME msaof.strDialogTitle = "Save this Report as Snapshot Format" msaof.strInitialDir = strSearchPath msaof.strFilter =...
  10. payback

    CONCATENATION PROBLEM

    Will this achieve what you want? It is a Select query for a SQL database from an ADP. SELECT TOP 100 PERCENT ID, Description, ISNULL(Address1, N'') + ISNULL(N', ' + Address2, N'') + ISNULL(N', ' + City, N'') + ISNULL(N', ' + State, N'') + ISNULL(N' ' + ZipCode, N'')...
  11. payback

    batch printing: prompt user once for printer; can it be done?

    Another idea which I have used successfully. It was originally designed to specify a particular printer for warehouse picksheets. First when starting the Access application, I save the user's default printer. Then I ask the user to specify a particular printer that they want to use for the...
  12. payback

    Record locking not working...what am i missing???

    Sorry for the long time in replying. I have a table set up called Locking_Table. The fields are - ID Autonumber Table_Name Text Record_ID Long Integer User_Name Text When_Locked Date/Time In each form where I need it, in the form's Open event I have - 'Check to see if record...
  13. payback

    Record locking not working...what am i missing???

    I use a lock table and prevent any users from opening a record that is already opened. It is written in VB. Let me know if you need some ideas.
  14. payback

    issue with ADP and word doc

    Is your ADP using ADO (default) or DAO? You can have both if you want. Your recordset is using DAO syntax and you might have to either change that to ADO or set the reference to DAO also. What exactly is the error line? Apart from this type of problem and minor syntax like removing rs.edit...
  15. payback

    Access Form To Word Template - Change Bookmarks(?)

    Look at my previous post. I note you are using ".range" but my working code does not. I also "select" the bookmark first.
  16. payback

    Access Form To Word Template - Change Bookmarks(?)

    Search in the Microsoft Knowledgebase for - +error +5941 +bookmark There are some results that could help you identify the issue. Also maybe not related but I select my bookmark fields differently i.e. With objWord.ActiveDocument If .Bookmarks.Exists("LetterDate") = True...
  17. payback

    Access Form To Word Template - Change Bookmarks(?)

    Have a look at thread705-1249866 - this works.
  18. payback

    Creating Word Document ++ - How?

    This is the code I created for sending data directly from Access into a word document without using the Merge. The purpose of this was to allow the Access application to not only have customer billing and payment transactions tracked but also customer correspondence. I have not included all...
  19. payback

    Creating Word Document ++ - How?

    Give me a few days to hunt it out and create a version without actual client data. Will try and get done this weekend.

Part and Inventory Search

Back
Top