Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can some please look at the below for me and advice what i am doing wrong. I am trying to run a sql query based on data selected from comboboxes on a form, results of which are generated in a subform attached to the main form

Private Sub Form_AfterUpdate()
Dim LSQL As String
Dim cmb As ComboBox
Dim txt As TextBox
Dim chk As CheckBox

For Each Control In Me.Controls
If IsNull(cmb.Value) Then
Form_ReportSubForm.RecordSource = "datamanager"
requerysubform

Else
If IsNull(txt.Value) Then
Form_ReportSubForm.RecordSource = "datamanager"
requerysubform

Else
If chk.Value = False Then
Form_ReportSubForm.RecordSource = "datamanager"
requerysubform

Else
LSQL = "SELECT * from datamanager"
LSQL = LSQL & " WHERE engineerid = cmbengid AND membername = cmbtm AND department = cmbdept"
Form_ReportSubForm.RecordSource = LSQL
    requerysubform

    End If
    End If
    End If
    Next

End Sub

When the 3 controls on the form are updated, nothing happens in the attached subform which tells me I am probably inputting this code in the wrong event. Can you please help with this?

share|improve this question
Is this Access? If so, what version? Otherwise, please say what this is. – John Saunders Jul 16 '09 at 17:20
sorry should have mentioned. This is Access '03. Thanks – TT1611 Jul 16 '09 at 17:21

2 Answers

Your code is a bit unclear to me, but I would use a syntax like

Form_ReportSubForm.form.RecordSource = "datamanager"

if Form_ReportSubForm is your subform object in the main form.

share|improve this answer

If I recall corectly if the form is unbound, that is there isn't a table or query in the forms Record Source property, then the form's AfterUpdate event doesn't get fired. Therefore you should be calling the same code from each of the three combo boxes AfterUpdate event.

And if you change a controls record source you might not need the requery. I can't recall right off hand so try it without the requery first.

And if you create your sub as a Function, you can just select the controls you want it to run on and paste =MyFunction() into the event textbox, instead of having to code it in VBA.

OnwDayWhen added the above paragraph. I would never, ever do that as that isn't done very often and isn't at all obvious what is going on when you look at the VBA.

share|improve this answer
Thank you for you thought Tony. The above is only a snippet of everything i need to complete. My form actually has about 18 controls on it which makes for really tedious coding of each control. I did end up doing this but the problem i ran into was that only individual queries can be run. If i wanted to run a query based on multiple selections in the combo boxes this it is impossible using your suggestion. I am considering using a command button and coding it using the above. I will get back and see if that approach works. – TT1611 Jul 18 '09 at 18:39
Each controls AfterUpdate event calls a common subroutine. So all the code is in one place. I do this with search functions such as Granite Fleet Manager - Equipment Quick Find granitefleet.com/ScreenShots/screen_EquipmentQuickFind.htm Each of the controls at the top of the form calls the same subroutine in the AfterUpdate event. – Tony Toews Jul 18 '09 at 19:57
And to add to Tony's suggestion, if you create your sub as a Function, you can just select the controls you want it to run on and paste =MyFunction() into the event textbox, instead of having to code it in VBA. – David-W-Fenton Jul 18 '09 at 21:40
Just use a CommandButton and save the pain.. on click all the way.. – pjp Aug 18 '09 at 21:51
Very little pain and that's an extra button to add to the GUI which is already busy enough. – Tony Toews Aug 18 '09 at 22:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.