Search results

  1. W

    Design Query with date ranges as columns?

    I have the months as columns figured out, but what I can't figure out is how to get another row below the column totals that gives a running total for the year for each product type each month. If you need help with the months as columns issue without the other issue, let me know and I can...
  2. W

    Design Query with date ranges as columns?

    A cross tab query worked perfectly. It creates a column for each month in which products were shipped. Is there a way to dynamically create columns for months where no products shipped? The problem is that since there are no shipments in there for those months (yet), it does not create a...
  3. W

    Design Query with date ranges as columns?

    Is there a way to design a query so that the column names are January, February, etc, and include anything delivered in that month? And then have the Rows total the number of records for each product type for each month?
  4. W

    Access autocomplete fields in access 2007?

    Are you storing the Dropdown items in a table or as a value list?
  5. W

    Access autocomplete fields in access 2007?

    Make sure the "new" value is in the list. Is it a value list or a table? Then make sure your combo box is connected to the right list. :)
  6. W

    Audit Log Error Message - Help

    Well, I wouldn't mind but I think I've found the solution. I appologize, but I didn't see this thread before. It appeared at the bottom of the screen so I clicked on it and after I read through the solution, I then went to my form and started deleting text boxes. I found one hidden box that...
  7. W

    Audit Log Error Message - Help

    I set a breakpoint at On Error GoTo ErrHandler It steps through each line until If .ControlType = acTextBox Then Then skips to End If So, I guess what that means is that it doesn't recognize my textbox as acTextBox
  8. W

    Audit Log Error Message - Help

    Sorry, I don't know much about debugging...is this what you are looking for? When I set a breakpoint at For Each ctl In frm.Controls It highlights the following: If .ControlType = acTextBox Then Then it skips to End If
  9. W

    Audit Log Error Message - Help

    http://support.microsoft.com/kb/184664?wa=wsignin1.0 Well, I don't think this is a problem because my form is based on one query from one table with a project number parameter. I have several subforms that are based on other related tables however, but it doesn't seem like this is what the...
  10. W

    Audit Log Error Message - Help

    When I step through the code with f8, It prints the following bugs in the immediate window. Bug1 Bug8 Bug9 Bug10
  11. W

    Audit Log Error Message - Help

    OK..I used debug.print (see below). When Ran it, The immediate window showed it appears to loop through Bug9 and Bug10 repeatedly. And then it tripped the debugger at Bug2. What it means, I don't know? If .ControlType = acTextBox Then Debug.Print "Bug1" If .Value <>...
  12. W

    Audit Log Error Message - Help

    It compliles ...strange
  13. W

    Audit Log Error Message - Help

    Yes, that's how I figured out what was causing it. I just started deleting things. Here is the code in the Audit Trail module. Option Compare Database Const cDQ As String = """" Sub AuditTrail(frm As Form, ShipperID As Control) 'Track changes to data. 'recordid identifies the pk field's...
  14. W

    Audit Log Error Message - Help

    I don't get a message box like that. I get... Error x The expression you entered has a field, control, or property name that Microsoft Access can't find. OK That is all the text and the only option is to click oK or close the box.
  15. W

    Audit Log Error Message - Help

    Thanks for your response, and yes I did try debugging, and I just tried it again. It didn't find a bug.
  16. W

    Audit Log Error Message - Help

    I've been using an the Audit Trail module for almost a year and have had no problems until now. It is giving me an error message "The expression you entered has a field, control, or property nam that Microsoft Access can't find 2424. " If I remove the procedure from "Before-Update", it...
  17. W

    Work-offline feature?

    I'm beginning to understand. Sounds like it's do-able and not too problematic once it's set up. Thanks for this description.
  18. W

    Work-offline feature?

    OK, this is not replication, this is really just using an "on-line" back-end AND an "off-line" back-end.
  19. W

    Work-offline feature?

    AH! Yes, I already have an audit feature built into the system. It records any changes made. I could see using this or at least using the same kind of system to do this. Thanks for bringing this to my attention!
  20. W

    Work-offline feature?

    Thank you for all of the above. The thought occurred to me when I noticed the "Work Off-Line with Sharepoint". My data base tables are not lists in sharepoint, but the front-end is on a Sharepoint site and my tables update a sharepoint calendar. I first thought that this button would allow...
Back
Top Bottom