hassantawfic
07-05-2016, 02:11 AM
select the error in the following code
Dim J as Byte
for J=1 TO 500 step 3
Listbox1.Items.Add()
Loop
a) you must use the Do..While rather than For..Next
b) It is an endless loop
c)Error in variable type in the loop
Dim J as Byte
for J=1 TO 500 step 3
Listbox1.Items.Add()
Loop
a) you must use the Do..While rather than For..Next
b) It is an endless loop
c)Error in variable type in the loop