HomeMade Title Bar [Resolved]
I'd like to implement a title bar using only a picturebox, how can I go about doing this? I've tried moving the form invoking the picturebox_mousemove event, but it gives a weird lag and kind of smears the form across the screen. The mousemove event also doesn't appear to be totally consistent either. I'm sure this has been done before, any pointers?
Re: HomeMade Title Bar [Resolved]
Code:
Private Sub Form_Load()
Picture1.BackColor = vbBlue
Picture1.Move Me.ScaleLeft, Me.ScaleTop, Me.Width, 320
End Sub
and then use RhinoBulls's code to move it around
Re: HomeMade Title Bar [Resolved]
Somehow I got a scrolling marquee type thing out of that. It must be Friday, or something!