Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB reading a combo box entry?

Status
Not open for further replies.

NeoZakz

Technical User
Jul 22, 2002
25
0
0
US
How do I get the VB to read whats in the combo box with out making it an = "blank"?

Heres what Im using:

If IsNull(Me![Combo119]) Then
Me![Date Due] = DateAdd("d", Me![Seq], Me![Date Due])
Else
DLookup("[Miledate]", "Mile1", Me![Date Due] = Me!
[Combo119]) = Me![Date Due] = DateAdd("d", Me![Seq], Me!
[Date Due])
End If

The problem is in the Me![Date Due] = Me![Combo119]
The Me![Combo119] wants it to be Me![Combo119] = "PPR1"
Is there a way to get it to read whats in the combo box it self?
 
Don't see why it should make a difference but try
Me![Date Due] = Me![Combo119].Value Raymondo
raymondo@rossar.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top