S
shiro
Private Sub Form_Current()
If [Free air current lo limit_1].Value > 0 And _
[Free air current hi limit_1].Value = 0 Then
[SpecCurr1].ControlSource = "[Free air current lo limit_1]"
End If
End Sub
The field SpecCurr1 won't have any value ( blank ) .Why?
Compiled and got no Compile error.Tried changing SpecCurr1
name to A on VBA window only,VBA should tell me that it can't
find the field A,right? But in this case,VBA doesn't tell anything.Why?
Tried also to remove the bracket and rename by using underscore,but
return me to nut again.
If [Free air current lo limit_1].Value > 0 And _
[Free air current hi limit_1].Value = 0 Then
[SpecCurr1].ControlSource = "[Free air current lo limit_1]"
End If
End Sub
The field SpecCurr1 won't have any value ( blank ) .Why?
Compiled and got no Compile error.Tried changing SpecCurr1
name to A on VBA window only,VBA should tell me that it can't
find the field A,right? But in this case,VBA doesn't tell anything.Why?
Tried also to remove the bracket and rename by using underscore,but
return me to nut again.