Search results

  1. A

    Screen capture Access window and save to disk

    Thanks folks, I'll let you know how I go.
  2. A

    Screen capture Access window and save to disk

    I already capture all general information upon error - the Err object data and the current call stack. I don't yet have a way of capturing the data values the user was entering at the time - unless you know of anything? By taking a screenshot I can see exactly what they were attempting to...
  3. A

    Screen capture Access window and save to disk

    Hi, I'm looking to take a screen dump of the current Access window, and save it to disk, as part of the error handling for my application. Does anybody have any suggested starting points? I've been Googling around for a while, but haven't really turned up anything concrete. This was as close...
  4. A

    Change data source of an Access Data Project dynamically

    Hi all, The client for an Access Data Project I am working on would like the ability to be able to install the back-end MSDE database onto an arbitrary computer and then connect the front-end application up to it (presumably after being prompted for connection details). Currently, my...
  5. A

    Bind a table from an MDB to a form in an ADP (2002)

    Hi folks, I have tried just about everything I can think of to get this arrangement to work. I've scoured the KB (this, this and this ) and tried every combination I can think of - nothing is working. Here's the scenario: I store per-user settings in a file named "LocalSettings.mdb". The...
  6. A

    Calculation

    Hi, Creating a calculated field is a piece of cake. In your Total textbox set your control source to the following: =SUM([MoneyIn]) That will provide you with the sum of the MoneyIn field for every record in your data source. You're not limited to single fields, things like this are also...
  7. A

    Before update validation

    If you want to stop the update from occurring, you have to set the Cancel parameter to True. If you want to allow the update (because your validation passed), then you don't change the Cancel parameter (or you set it to False, meaning "don't cancel the update"). When you cancel the BeforeUpdate...
  8. A

    select using Combo box but prevent editing?

    Hi, You might want to try setting the combo box's "LimitToList" property to "Yes". This will force the user to select an option that is already in the list (by rejecting any text they type if it doesn't match an item already in the list). Regards, -Adam.
Back
Top Bottom