View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Susan Susan is offline
external usenet poster
 
Posts: 1,117
Default TRUE and TRUE or TRUE then......

i have to believe i'm misreading this code, somehow. when
i watch chkboolean.value, it changes to false, as it should,
the first time the code is run through. but then when
it runs through a second time, this code should NOT
get triggered, because now chkboolean.value=false (which
it shows, correctly, in the watch window).

xxxxxxxxxxxxxxx

If chkBoolean.Value = True And _
optCouponsOnly.Value = True Or _
optSchedCoupons.Value = True Then
MultiPage1.pgCoupons.Visible = True
chkBoolean.Value = False
MultiPage1.Value = 1
txtProgID.SetFocus
MsgBox "Please also fill in these fields, then press ""Continue""."
_
, vbInformation, "Let's see................."
Exit Sub
chkBoolean.Value = False
End If

xxxxxxxxxxxxxxx

thanks for any assistance.
susan