Search results

  1. W

    Table Definition that AutoPads with Spaces

    I'm using Access 2003. Is there any way to define a table text column so that, if data is entered that does not fill all the allotted space, the table will automatically pad that field to the right with zeros? Or does that need to be done when the column is actually populated? Thanks. Wayne
  2. W

    Daily Batch Processing in Access?

    Thanks, Ken. This sounds promising. I had no idea Access could do all this stuff. Can you provide any other details? Is this "endless loop" inside an Access function or macro? When the loop snags a job record that needs to execute, how does that execution happen? I've never used macros...
  3. W

    Daily Batch Processing in Access?

    Thanks. I wasn't even aware of the Windows Task Scheduler. Looks handy. Now I know.
  4. W

    Daily Batch Processing in Access?

    Hi, I'm using MS Access 2003. Not sure if I'm in the right forum, but I'd like to know whether it's possible to automate the daily load of a csv file into an Access table from a network folder, and perform other scheduled processing similar to what a stored procedure might do during a daily...
  5. W

    How to Fire VBA Code when a Calculated Textbox Changes Its Value

    I'm using MS Access 2003. I have a textbox control txtAmountOutstanding whose Control Source is as follows: =[txtActualAmount]-[txtAmountSettled] (txtAmountSettled is itself calculated from data in a subform). I'd like to be able to programmatically insert a Settled Date into another field...
  6. W

    Move Navigation Buttons on Form?

    Thanks. This works, except that it initially always displays "1 of 1". (If I then click the Next button, it corrects itself.) The Form_Current event definitely needs this code, but I think I also need this code somewhere else after all the retrievals on the subform (and its subforms) have...
  7. W

    Move Navigation Buttons on Form?

    I didn't tell all of the story. The form I'm concerned about is actually a subform that displays only a single record at a time. So when the user sees the master alongside the child, it would be nice to inform the user the number of child records belonging to the displayed master record. Right...
  8. W

    Move Navigation Buttons on Form?

    I'm using MS Access 2003. Is it possible to move the navigation buttons from the standard position (bottom left of the form footer) to, say, the header? As a second question, is it possible to extract the information from the navigation buttons so that I can insert that data into a heading...
  9. W

    Placement of Code in a Form that Opens a 2nd Form for Collecting Parameters

    I'm using MS Access 2003. I have a tabular form that simply runs a query and displays data. Before the query fires, I want to display a parameter-collection form so the user can filter the results before they appear. The SQL would grab the parameters from the open parameter-collection form...
  10. W

    Searching for text in an MS Access MDB File

    Looks like just what I need. Thanks!
  11. W

    Searching for text in an MS Access MDB File

    I'm using MS Access 2003. I'd like to be able to search all non-table objects in a given MDB for a given text string. Is this possible? I want to know which MS Access objects contain the specified string. (I haven't seen anything in the menus that looks promising.) My intention is to...
  12. W

    Opening Multiple Reports from a Single Switchboard Item

    If I chain the reports to open one-by-one by adding a single command to each report's Close event, I can get them all to open, in turn. As long as a report is open, does it retain its connections to the database engine? I would have thought that as soon as it dumps its data to the screen, it's...
  13. W

    Opening Multiple Reports from a Single Switchboard Item

    There are no combo boxes or list boxes on the reports.
  14. W

    Opening Multiple Reports from a Single Switchboard Item

    After adding my third report to the list of reports to open (in the function), I get the following error: Is Access keeping the Jet connections open after displaying each report? (The third report was the simplest report of all.) Any ideas on how to resolve this? Thanks. Wayne
  15. W

    Opening Multiple Reports from a Single Switchboard Item

    Thanks, Bob! Just what I needed.
  16. W

    Opening Multiple Reports from a Single Switchboard Item

    I'm using MS Access 2003. (Probably a dumb question ....) I'd like to open multiple reports simultaneously when I click on a given Switchboard item. (The reports are really a set--one should not be opened and printed without the others.) So what's the best way to do this? Do I run some...
  17. W

    Hide the Switchboard form while a Report is Loading

    Beautiful! Thanks, Bob. BTW, do you think the DoEvents command is necessary? (I've seen differing viewpoints on that.) Wayne
  18. W

    Hide the Switchboard form while a Report is Loading

    I'm using Access 2003. I have a report that uses a form to collect parameters before generating the report. Here's the VBA code in the report's Open event: When the DoCmd.Maximize command fires, the report does indeed maximize; however, the Switchboard form also displays in the top left...
  19. W

    Getting Grand Total with Nested Reports

    I am using MS Access 2003. I have a report in which the highest-level detail band contains a nested Access subreport, inside which is a numeric field in the detail band of the subreport. I would like to generate totals of all of these numeric values through the entire report, to be reported in...
  20. W

    How to Get a Combo Box to Refresh

    Hi, Bob, I must be doing something wrong, because when I add your code to the After Update event, I get the following error: I tried this code in the After Update for the field, then the record. Same error both times. Thanks. Wayne
Back
Top Bottom