Visual Basic Segment:
VB Code:
With rsTipModels Me.Combo_Option_Selection_Tip_Model_Type.Clear While Not .EOF MsgBox .Fields(!MODEL_NUMBER) 'A) Same Error MsgBox .Fields("MODEL_NUMBER").Value 'B) Same Error MsgBox .Fields(!MODEL_NUMBER) 'C) Same Error MsgBox .Fields("MODEL_NUMBER").Value 'D) Same Error Me.Combo_Option_Selection_Tip_Model_Type _ 'E) Same Error .AddItem .Fields("MODEL_NUMBER").Value .MoveNext Wend End With
I thought I had this figured out. Unfortuanaly, I lost the source I was using to figure it out and can't find it again.
Help!
Thanks,




Reply With Quote