wondering if ye can help me here, I have plotted a line into a picture box and want to make it move.....(ie the line is curved so the end position is upside down to the start position)
how do i do this?
Printable View
wondering if ye can help me here, I have plotted a line into a picture box and want to make it move.....(ie the line is curved so the end position is upside down to the start position)
how do i do this?
Well if you store all the points in UDT like so :
Then, if you wanted to move the line up, you would iterate through the Points array and subtract some value from the Point(n).y value.Code:Privtae Points() As myPoint
Private Type myPoint
x As Integer
y As Integer
End Type
This help ?
- jamie