| Thread | Last Post | Replies |
|
| Access 2007 is not null problem | 10 May 2008 11:56 GMT | 1 |
Hello. I recently converted an Access 2003 database to 2007 and had a macro that had conditions built in. These worked in 2003 but do not work in 2007. The example: Conditions:
|
| How to Hide subform if any fields are dirty | 10 May 2008 04:14 GMT | 1 |
I need to hide a subform if any of the fields on the main form are being edited. I can't get that to work The subform can be shown ONLY after the Save Record button is clicked.
|
| RecordsetClone not working Access 2007 | 10 May 2008 02:53 GMT | 3 |
I have code to handle the deletion of a record that appears on a form. Deleted the current recordset on the form and then either moved to the next record, or the previous, depending.... Worked great in 2003. Now getting an error of type mismatch when setting the variable rst ...
|
| Make use of SQL 2000 full text search with Access front end | 10 May 2008 00:41 GMT | 1 |
So far I have helped my users search for records by building search forms that will allow them to check a few boxes and build a query for them. It has always been "Find orders for Customer X", "Find closed orders", "Find shipments over X dollars", etc.
|
| search for multiple records in a form | 09 May 2008 23:31 GMT | 4 |
I have a form that queries a table based on multiple filters, such as Part Number, Part Type, etc. Currently the search code is enabled to search for one part number entered in a text box, and the search results are displayed in a subform.
|
| Filter Command Button | 09 May 2008 23:22 GMT | 2 |
HELP Please! I have a continuous form based on a qry called qry2009PO. I want to be able to filter the records based on State (cboState) and County (lstCounty) -which lstCounty is populated via an after update on cboState. Both are text fields. Here is the code that I have. ...
|
| Using a combo box to populate and display the rest of selected rec | 09 May 2008 21:47 GMT | 1 |
I have a drop down box that lets a user select IDs of the records. After they choose the one they want I want the rest of the information (such as name, address, etc.) to be populated for them. Any suggestions would be great!
|
| Add one if checked problem | 09 May 2008 20:36 GMT | 5 |
Hello, I have another question. I have the following code in the after_update event of a check-box and it works fine. The problem is that if I click/unclick and then click again it keeps adding one to PossiblePoints. PossiblePoints
|
| Am I at a "New Record?" How to tell? | 09 May 2008 20:17 GMT | 2 |
In Access2003, I need to know if a user is in the process of adding a NEW record as opposed to modifying a current one. The latter I have covered via DIRTY, but I really need to know if it's a new rec. Can someone please throw out a few ideas?
|
| Input mask | 09 May 2008 20:14 GMT | 2 |
Is there a way to add the input mask for the password in this code? Dim stPasswd Dim stDocName As String stPasswd = InputBox("Enter Password", "Restricted Report")
|
| extract part of a field | 09 May 2008 20:13 GMT | 2 |
I amtrying to extract the first letter and only the first lette from cboClassification to use in an text box. The properties of cboClassification are RowSource: SELECT tblClass.ClassIDPK, tblClass.classification FROM
|
| cannot close/quit Excel | 09 May 2008 18:57 GMT | 1 |
I'm using vba automation to write to an Excel file. Everything works fine except that I can't seem to quit a temporary instance of Excel that I'm opening. Here's some of my code (also read the rest of my question after the code):
|
| Is there a list of ForeColor codes? | 09 May 2008 17:54 GMT | 3 |
I'm trying to find something like a list that will tell me what number to type into VBA when I want to see what color. The following code works, but I need a darker green: If Me.[status].Value = "Achieved" Then
|
| Do not show if check box is true | 09 May 2008 17:20 GMT | 1 |
I have a few forms one is for software and the other is for equipment. When equipment goes to surplus we check a box so that it no longer shows on a report the db generates. On the software form if the software is no longer in use we check a box so that it is only showen in the ...
|
| dateadd() as part of a loop not working | 09 May 2008 15:28 GMT | 1 |
I've got a loop running, however it always seems to miss off the first date, so any help would be greatly appreciated. So, the fields/data I have are: [startdate] = 18/01/2009
|