Search results

  1. S

    Question Database crashes

    Sorry, I should have said.......Access 2007 but running an Access2000 database because it's also shared with other users running Office 2000. How do you get to the event log in 2007? There is no About MS Access menu selection. The error just says it's encountered an error and must close...
  2. S

    Question Database crashes

    I don't even know where to begin or how to describe what's happening. It's random and unpredictable. I hope I'm not violating etiquette with my problem but I'm at the end of my rope. I have designed many databases for multiple applications where I work. The one I'm having issues with is for...
  3. S

    Package n of nth on report

    Here's what I wound up doing: Make Excel spreadsheet from text file generated from Manufacturing System. Store on local drive. Serves multiple databases and work stations. Make table in FE database from spreadsheet. Make new BE database and store on network server. Built form to display open...
  4. S

    Package n of nth on report

    Duh! Another one of those little quirks, huh? I'll tackle it from a macro standpoint. I can design those fairly well. Thanks!
  5. S

    Package n of nth on report

    I've created a database to print "package labels" based on a input form for sales orders. The operator decides which sales order line to print labels for then clicks the "Labels" button. A dialog box prompts them for number of packages. They input the quantity, i.e. 5 packages. I want the...
  6. S

    Sharing a linked table

    Yes. Which brings up an interesting scenario. Excel spreadsheet is Excel2000. Database is Access2007 (this example). Open spreadsheet on station1 (server). Share workbook set to no. Open database on station2. Try to preview report. Says can't because it's already open. Close workbook...
  7. S

    Sharing a linked table

    I apologize for the newbie questions in advance: I have an Excel spreadsheet on my hard drive shared to the network: \\TOOLSApps\c_drive\SalesOrders\sornew.xls This is an "open sales order report" for our company. I won't go into details as to why it's Excel, how it's updated, etc. Suffice...
  8. S

    read/write in VBA

    After reviewing your code with my actual data, I realized I left out some additional information and criteria: I'm using Office 2007 Professional. If lngReqd = 0, then lngAlloc = 0 If strWONum is Null, then strWONum = "None" and lngQty = 0 and lngAlloc = 0. The goal is to produce a list of...
  9. S

    read/write in VBA

    Thank you, I'll try it out. However, when I tried to open your sample database I got a "missing or broken reference" error to "dao2535.tlb version 3.5". Do I really need that?
  10. S

    read/write in VBA

    I'm new to modules/VBA so please forgive any stupid questions :) I'm trying to write a function in a query to allocate material from work orders to fill sales order demand. It's currently a many to many relationship so I'm getting multiple records per sales order for each work order for the...
  11. S

    Syntax error

    DUH! Now I feel like an idiot. Couldn't see the forest for the trees, I guess. Declared lngRun and it works like a charm. Thanks!
  12. S

    Syntax error

    When I try to utilize this function in a query, I get a syntax error. I've looked and I can't pinpoint it. Can somebody point it out? In the query: RunBal: fncRunBal([ITEM_ID],[QTY],[PierceBal]) Function fncRunBal(strItemId As String, lngQty As Long, lngPierceBal As Long) As Long...
  13. S

    DSum

    Get anywhere with this?
  14. S

    Crosstab Form

    I have a report based on a crosstab query where the column headings come from a field named DueDate. The column headings are dynamic and change depending on the dates. Code behind the report is as follows: Private Sub Report_Open(Cancel As Integer) ' You didn't know how many columns, or...
  15. S

    DSum

    Great! and thanks. No rush. I've been developing this database for 6 years so another day or two won't hurt.:D
  16. S

    DSum

    I'm trying to duplicate the calculations in the attached spreadsheet. The database is a scheduling tool mimicking an MRP scenario. Input is a sellable item that uses other parts to make it. Process is as follows: The input is an Excel spreasheet open order report with quantity and due date...
  17. S

    DSum

    Any takers?
  18. S

    DSum

    That post doesn't look at all like I typed it. Hope you can understand what I'm trying to ask.
  19. S

    DSum

    Hate to beat a dead horse but I've searched every thread and can't figure out one which fits my application. I'm wanting to use a DSum function in a query to calculate a running sum field. Purpose is to consume inventory until it's exhausted and starts going negative. i.e. Fields...
Back
Top Bottom