Welthey,
Since your not getting a "syntax" problem, we should be able to set that aside.
I usually don't use the Me. object within DLookups
Me.Question1 = DLookup("[Questions]", "[tblAMUQuestions]", "[Process] = '" & cboAMUProcess
& "'")
The primary thing to suspect is that the cbo is not delivering a legitimate value for
[Question]
Try this trick to verify the contents of your cbo. Place an unbound text control on
the form with a ControlSource of...
= cboAMUProcess
Is that a legitimate (and unique) [Question] value?
Otherwise...
Please describe your cbo (bound vs unbound), RowSource/columns, and your cbo
properties. (NoOfCols, Columnwidths, and BoundColumn)
--
hth
Al Campagna
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions
"Find a job that you love, and you'll never work a day in your life."
"Welthey" <(E-Mail Removed)> wrote in message
news:01AE22B5-435D-4849-9366-(E-Mail Removed)...
>I have the following code in the after update in my combo box. It's now
> producing any any informaton in my text box
>
> Private Sub cboAMUProcess_AfterUpdate()
> Me.Question1 = DLookup("[Questions]", "[tblAMUQuestions]",
> "[Process]='" & Me.cboAMUProcess & "'")
>
> End Sub
>
> Can someone please advise what I am doing wrong?