| Thread | Last Post | Replies |
|
| Delete Records on form and subform then macro msg box appears | 06 Apr 2005 21:22 GMT | 1 |
Hope someone can help me out. I have a form with an underlying subform. Here's the code I've written to take care of this in the Delete Record command button event procedure. strSQL = "DELETE * FROM tblWeighting WHERE resourceID=" & Me.resourceID
|
| Syntax for a Variable | 06 Apr 2005 20:45 GMT | 1 |
I am unable to get the syntax correct for defining a variable with an AND statement. Both of the values are strings. Dim stWhere As String stWhere = ("[GrantProgram] = '" & [txtGrantProgram] & "'")
|
| Test conditions on Close | 06 Apr 2005 20:43 GMT | 3 |
I would like to test for a value in one text box if another text box is empty. This is the code I have tried to place in the On Close event for the form: If IsNull(Me.cboResponsePerson) And Not IsNull(Me.txtResponse) Then
|
| Attempting to add reformatted data to a subform | 06 Apr 2005 20:24 GMT | 2 |
Option Compare Database This pulls data from tables and attempts to reformat it to display mor like a spreadsheet in the subform of this main form. The linked field pass the name of the project for which the data needs to be displayed.
|
| Lock record | 06 Apr 2005 20:11 GMT | 1 |
I want to be able to lock a record based on a condition. For example I have a field called "Ordered" that tells me if the item has been ordered or not. I want to prevent users from modifying this record if this field has a value (date). I am trying to use the allow property for ...
|
| Bound Text | 06 Apr 2005 20:00 GMT | 1 |
I created a form in access by creating my textboxes and naming them as I created the form instead of creating the database first and then bounding them to the form. Right now I can't scroll through my records on the form even though I can enter new records and save them to the ...
|
| update unhidden column of a form in Datasheet view | 06 Apr 2005 19:55 GMT | 1 |
Hi, I have a form in datasheet view, it was built from a query. it has 3 fields: Item#, Item Name and Qty. Item# is a hidden column - not shown in the Datasheet (although there is a value - 'cz it's pulled from select query
|
| Task Scheduler | 06 Apr 2005 19:13 GMT | 5 |
On XP SP2 machine, I'm trying to get an Access DB to open automatically every day at a set time. Here's the syntax I got from: http://support.microsoft.com/?id=210111 myTest.bat is the following:
|
| Dialog Boxes | 06 Apr 2005 18:45 GMT | 2 |
In a recent applicaton update, several dialog boxes appeared that displayed information about the progress of the application install. These were not typical dialog boxes that I am accustomed to with my Access development, clicking OK was not a requirement to acknowledge them ...
|
| Too many forms, I Think? | 06 Apr 2005 18:22 GMT | 2 |
I have a question about a program I am creating for my work. I am not very skilled at Access and I basicly need to know if I am going about this right. I have created a Form with a Tab Control that has 6 Pages. I have 8 subforms Total on this Tab Control. Average 2 per page, one
|
| FileSystemWatcher stops working | 06 Apr 2005 18:11 GMT | 2 |
I have a couple of apps that use a filesystemwatcher to scan folders for file activity. These generally work fine but occasionally just stop - no errors, but they just stop picking up the activity. Any ideas on how to avoid this happening?
|
| refreshing a combo box | 06 Apr 2005 16:49 GMT | 1 |
I have a combo box on a form that contains vendor names. I then have a second combo box that contains products offered by that particular vendor. The first combo box dictates what appears in the second combo box via a query.
|
| How does one calculate direction? | 06 Apr 2005 16:12 GMT | 22 |
I have a table of known points. We have a course we send out managers through. They pick several of the known points any any random order. I would like to figure out how to get access to calculate the direction from one point to the next.
|
| how to create an array of buttons on a form to reference by index. | 06 Apr 2005 16:11 GMT | 1 |
Trying to create an array of check boxes to read by way of a loop. Vba won't let me create an array of the same control on mt form ? Anyone know how I can create this array on mt access 2003 form ?
|
| Calling Sub Procedure In Other Form | 06 Apr 2005 15:13 GMT | 4 |
I have two form called frmA and frmB. In frmA, I have a sub procedure called cboPeriod_AfterUpdate. frmA and frmB is loaded and I want to called the sub procedure cboPeriod_AfterUpdate from frmB.
|