JohnBoy2005
Programmer
I've got a picture box that holds a menu that moves in and out of view as and when required.
When it's moving back, its leaving a black trail.
Any reasons...
Heres the code, it's a bit crude, but works well, apart from the black trail. Its on a command button click
If strMenu = "In" Then
For m = -2400 To 120
picPopOut.Left = m
picPopOut.Refresh
Next m
strMenu = "Out"
Else
For m = 120 To -2400 Step -0.2
picPopOut.Left = m
picPopOut.Refresh
Next m
strMenu = "In"
End If
Cheers
John
When it's moving back, its leaving a black trail.
Any reasons...
Heres the code, it's a bit crude, but works well, apart from the black trail. Its on a command button click
If strMenu = "In" Then
For m = -2400 To 120
picPopOut.Left = m
picPopOut.Refresh
Next m
strMenu = "Out"
Else
For m = 120 To -2400 Step -0.2
picPopOut.Left = m
picPopOut.Refresh
Next m
strMenu = "In"
End If
Cheers
John