I ended up having worse issues than a few txt fields not showing the correct data until i clicked inside them, so i lost track of this post.
But with other issues resolved. I'm back to being absolutely stumped! I've tried turning autotab on and off for the fields but no difference. I've even added a field to it, and no difference! I use the same code on a copy of the form for a different table to store strictly the newfield tickets and i have the same issue on that form also.
Image1= After selecting the lease in the combo box
Image2=Clicking inside the "LeaseT" field to make it display the value
Image3=Clicking inside the "LeaseR" field to make it display the value
Image4=Highlighted all the fields that are auto populated by the lease combo box.




Code:
Private Sub LeaseCombo_AfterUpdate()Dim varSec, varTrack, varRegion, varCounty, varOrigin, varRC As Variant
varSec = DLookup("SEC", "NewfieldCoalgateSites", "Lease = [WELL_ID]")
varTrack = DLookup("TRACK", "NewfieldCoalgateSites", "Lease = [WELL_ID]")
varRegion = DLookup("REGION", "NewfieldCoalgateSites", "Lease = [WELL_ID]")
varCounty = DLookup("COUNTY", "NewfieldCoalgateSites", "Lease = [WELL_ID]")
varOrigin = DLookup("WELL_ID", "NewfieldCoalgateSites", "Lease = [WELL_ID]")
varRC = DLookup("RC_Number", "NewfieldCoalgateSites", "Lease = [WELL_ID]")
If (Not IsNull(varSec)) Then Me.Sec = varSec
If (Not IsNull(varTrack)) Then Me.Track = varTrack
If (Not IsNull(varRegion)) Then Me.Region = varRegion
If (Not IsNull(varCounty)) Then Me.County = varCounty
If (Not IsNull(varOrigin)) Then Me.Origin = varOrigin
If (Not IsNull(varRC)) Then Me.RC_NUMBER = varRC
End Sub
Does anyone have a clue why this is happening?