|
-
January 19th, 2000, 06:21 PM
#1
counter
i need help making a counter for this
chkBoxValues(0) = 0
chkBoxValues(1) = 0
chkBoxValues(2) = 0
chkBoxValues(3) = 0
chkBoxValues(4) = 0
chkBoxValues(5) = 0
chkBoxValues(6) = 0
chkBoxValues(7) = 0
chkBoxValues(8) = 0
chkBoxValues(9) = 0
chkBoxValues(10) = 0
chkBoxValues(11) = 0
-
January 19th, 2000, 06:31 PM
#2
Re: counter
Something over there is coding....
... and you don't know!
-
January 19th, 2000, 06:38 PM
#3
Re: counter
chkBoxValues 0-11 have to equal 0 is there a way to shorten the code
-
January 19th, 2000, 07:32 PM
#4
Re: counter
private sub ...()
dim i as integer
for i = 0 to 11
chkBoxValues(i) = 0
next i
end sub
Something over there is coding....
... and you don't know!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|