• WSJim Bulger

    WSJim Bulger

    @wsjim-bulger

    Viewing 15 replies - 1 through 15 (of 34 total)
    Author
    Replies
    • in reply to: How to simplify the select case (Access 2000) #568934

      try something like this:

      select case Me![OptConnection] & “_” & Me![OptTables]
      case “1_1”
      case “1_2”
      case “2_1”
      case “2_2”
      case else
      end select

    • in reply to: RecordSet Error (A2000) #568605

      post the query string. that is where your error seems to be

    • in reply to: MSOutlook vs. FirstClass (A2K) #568185

      try this. I use it in modules with no problems

      Function fnMomentaryPause(timPause As Single)

      Dim Start
      Start = Timer ‘ Set start time.
      Do While Timer < Start + timPause
      DoEvents ' Yield to other processes.
      Loop

      End Function

    • in reply to: Export Query to ASP and make it work? #1781095

      TRY THIS

      sql = “SELECT [2K1-JobBook-Query].[JOBNUMBER], [2K1-JobBook-Query].[2K1-JobBook_CUSTOMERID], [2K1-JobBook-Query].[DATE_IN], [2K1-JobBook-Query].[SUBDIVISION], [2K1-JobBook-Query].[2K1-JobBook_CITY], [2K1-JobBook-Query].[2K1-JobBook_STATE], [2K1-JobBook-Query].[PLAN#], [2K1-JobBook-Query].[LOT], [2K1-JobBook-Query].[BLOCK], [2K1-JobBook-Query].[2K1-JobBook_ADDRESS], [2K1-JobBook-Query].[STATUS-OUTBOUND], [2K1-JobBook-Query].[STATUS-DATE-SCANNED-OUTBOUND] FROM [2K1-JobBook-Query] WHERE ((([2K1-JobBook-Query].[2K1-JobBook_CUSTOMERID])=’DAVID’) And (([2K1-JobBook-Query].[DATE_IN])>Date()-9) And (([2K1-JobBook-Query].[STATUS-OUTBOUND])=Yes))

      I think the problem was the “”DAVID”” which should be ‘DAVID’

    • in reply to: Making My Database Accessible #1781063

      since you say it is updated weekly, i would suggest pushing the db to them at a preset time every week. You say they are all on a lan so you can use your network o/s scheduling utility to do this.

    • in reply to: A97: Picture DB Size #520334

      look up ‘Picture Property’ in access help

    • in reply to: A97: Picture DB Size #520326

      This particular problem is well documented in all Access forums I know. Do not store files in your database. Store, instead the filepath to the file (whether it be a .bmp, .jpg, .doc, .txt) and set the object source during runtime to display the file’s contents.

    • in reply to: Running Time Quandry #520096

      my recommendation would be to move your tables into MSDE and transform your queries into stored procs and views. The benefits of these are well known and the MSDE functions the same as an SQL server. MSDE comes on the office cd.

    • in reply to: Running Time Quandry #520022

      without answering you questions, i have some of my own:

      You are using A2K, but are you utilizing the MSDE, or JET?
      Is the db split?
      When you imported the data, did you compact before running?

    • in reply to: Access 2000 Password #520019

      you need to provide the back-end password in the connection (link) string for the back-end tables

    • in reply to: Temporary Tables & Arrays #520018

      What Legare means is to have a template temp.mdb which contains the table objects you wish to use. In your code, before linking to the temp tables, check the file size of your ‘PRODUCTION’ version of the temp.mdb. If it is over a size you feel comfortable with, just copy the ‘TEMPLATE’ version of the temp.mdb over the ‘PRODUCTION’ version. Then connect yout table links and proceed as usual.
      I actually use a variation of this technique with my distributed front-ends which can become bloated over time. My variation also checks for a NEWER version depending on whether I have added/modified/fixed anything to the front-end ‘TEMPLATE’

    • in reply to: syntax error in update statement #520002

      sure. send it to jbulger@directhitdata.com

    • in reply to: syntax error in update statement #519919

      CurrentDb.Execute “UPDATE products set stock = [order details]+ stock WHERE orderid = ” & TOrderID

    • in reply to: Tracking changes #519197

      What you will need to look into is: .OldValue

      HTH

    • in reply to: Query ? #519097

      myDate<=DateAdd("d",-7,Date())

    Viewing 15 replies - 1 through 15 (of 34 total)