D
David Lozzi
Howdy,
I feel quite embarrased asking this question, but for the life of me i can't
figure this out. I haven't run a debug, but I think what is happening is
that i'm doing some division and its rounding up when necessary, for
example.
Dim i as integer
Dim r as integer
i = 30 / 8
r = 30 mod 8
from what I can see in the way my code is responding, i is equal to 4, not
3. The mod works correctly, returns 6. How do i get this stupid thing to
work?
Thanks!
David Lozzi
I feel quite embarrased asking this question, but for the life of me i can't
figure this out. I haven't run a debug, but I think what is happening is
that i'm doing some division and its rounding up when necessary, for
example.
Dim i as integer
Dim r as integer
i = 30 / 8
r = 30 mod 8
from what I can see in the way my code is responding, i is equal to 4, not
3. The mod works correctly, returns 6. How do i get this stupid thing to
work?
Thanks!
David Lozzi