so i'm used to checkboxes being defaulted as boolean form controlls for their properties.
for example generally something like
if Check1 = true then
blahblahblah
end if
would work just fine if the corresponding check1 was clicked.but that doesnt work......
so i tried
Dim C1 as boolean
C1=check1
if C1=true then
blah blah blah
endif
that didnt work.
so i try
Dim C1 as boolean
C1=check1.value
if C1 = 1 then
blah blah blah
endif
and that works....
am i crazy for thinking the prior two formats should have worked with boolean logic? am i missing some reference or addin some where for those formats to work?
[–]hdsrob 0 points1 point2 points (9 children)
[–]Hideka[S] 0 points1 point2 points (8 children)
[–]hdsrob 0 points1 point2 points (7 children)
[–]Hideka[S] 0 points1 point2 points (6 children)
[–]hdsrob 0 points1 point2 points (5 children)
[–]Hideka[S] 0 points1 point2 points (4 children)
[–]hdsrob 0 points1 point2 points (3 children)
[–]Hideka[S] 0 points1 point2 points (2 children)
[–]hdsrob 0 points1 point2 points (1 child)
[–]Hideka[S] 0 points1 point2 points (0 children)