| Thread | Last Post | Replies |
|
| Automate user id and password in ODBC dialog box | 26 Feb 2008 06:40 GMT | 3 |
I'm attempting to use the windows scheduled task feature to automatically download information via ODBC into an access db. The problem is that the ODBC user id and password has to be entered before the data will transfer. Is there some way to programmically enter the user id ...
|
| How does one report bugs? | 26 Feb 2008 02:31 GMT | 3 |
How does one report bugs?
|
| obtain list of fields | 26 Feb 2008 02:14 GMT | 2 |
I've been asked to generate a list of all the fields used within an mdb for certain selected tables. Aside from going through each query and manually inspecting them, is there a programmatic way to do this? (I've examined the hidden system tables but they have not been helpful).
|
| Collating reports | 26 Feb 2008 01:27 GMT | 1 |
I have two different reports that are generated from the same table. They are sorted by customer, generally one page per customer. I would like to be able to print the reports collated together, as follows: Report 1, Customer 1
|
| Stopping new record creation | 25 Feb 2008 20:48 GMT | 2 |
I have an Order entry form that contains fields for customer name and order date. It also contains a subform with order details. I would like to test the customer name and order date and in certain situations stop it from generating a new record. But it seems like whenever I
|
| refresh a combo box | 25 Feb 2008 20:34 GMT | 2 |
I have a combo box in the form header that finds my record of interest (I used the wizard to create it.) When I disapprove a client (in the after_update event of a frame that contains option buttons labeled "approve" and "disapprove") that record disappears (via Requery in the ...
|
| Output To | 25 Feb 2008 20:25 GMT | 2 |
Here's my code: Private Sub Command4_Click() DoCmd.OutputTo acOutputQuery, qryBillingExport, , ([Forms]![frmBillingExportFrom]![dateCollectionDate])
|
| Prevent double booking withing wehicle checkout database | 25 Feb 2008 17:21 GMT | 2 |
Hello, I am having a problem with a database that I have. The database is a vehicle checkout one that I helped create. The part where I am stuck is when a user goes to checkout a vehicle they click on checkout vehicle and then can slecet the vehicle they want along with the ...
|
| If one value then another value from same line | 25 Feb 2008 17:10 GMT | 2 |
I've actually posted a similar question but still cannot resolve... Please help! What i want to do is when i select a value from a drop down list in a form another text box needs to be populated with a value from the same line...
|
| help with code | 25 Feb 2008 16:03 GMT | 10 |
I'm using this code to identify existing cases in a table based on an account number. This code searches all records for the past 3 years, I'd like to alter the code to only look at the past 60 days cases rather than the entire table. The date is in a field called ...
|
| Excel.exe not closing after transferspreadsheet | 25 Feb 2008 11:08 GMT | 1 |
Hi I have the following code: Dim xlapp As Excel.Application Dim xlwkb As Excel.Workbook Dim xlWs As Excel.Worksheet
|
| send email | 25 Feb 2008 06:41 GMT | 1 |
How do you send email in an access code in a module? Using access 97. Thanks.
|
| Age test | 25 Feb 2008 01:32 GMT | 5 |
I would like to know how to test if a person is less than 18 years old. Something like this: where dtDateOfBirth is their birthday and Date is the current date if Date - dtDateOfBirth < 18 then strStatus = "Child"
|
| stLinkCriteria with field that has a quote | 24 Feb 2008 22:24 GMT | 2 |
I have surname on a form, and sometimes the surname might have a quote, like O'Neil. This is my statement to set the criteria, but it does not like the user entering a quote in the data - how can I fix this? stLinkCriteria = "[LastName] LIKE '" & Me![surname] & "*'"
|
| Print report based on forms selected record | 24 Feb 2008 21:43 GMT | 3 |
Is it possible to print a report based on the selected record of a form without actually opening the report. I would like to print the record to a delivery manifest as the user completes the current record. The form name is frmDelivery and the report name is rptDeliveryPrintOut ...
|