The following snippet of code looks for two things, I can't quite get it to perform correctly.
<pre>If Me.Paint > 0.25 And Me.Paint < 3 Then
intPaint = MsgBox("Is This A Paint Operation or A Blend Operation" & vbCrLf & _
"For Blend Press OK:" & vbCrLf & _
"For Paint Only Press Cancel:", vbOKCancel, "Blend Paintwork")
ElseIf Me.Paint <= 0.24 Then</pre>
It should be:
If less than 0.25 then do something.
If equal to 0.25 and between 0.25 and 3 then do something else.
The <3 is causing the problem because 0.25 or 0.24 is less than 3 ???
How should I change the above ?




