23-09-2006, 04:34 PM
ugh I hate how ms has that bug in it, though with ms it isnt a bug since it never gets called, when people add 32x64 it turns into a bug
you set y to 0. So the next line is just setting .top to .top because 0*-1 is 0. FUCKIN ZERO....GAHHHHH. (it angers me
)
so put the y after the with...
There might be other problems, but start with that
Code:
' Check if its out of bounds because of the offset
If Y < 0 Then
Y = 0
With rec
.top = .top + (Y * -1)
End With
End If
you set y to 0. So the next line is just setting .top to .top because 0*-1 is 0. FUCKIN ZERO....GAHHHHH. (it angers me

so put the y after the with...
There might be other problems, but start with that
