Eric,
What Chris left out was you will need to draw the handle yourself. Then use
the mouse events to resize the picture box...
Consider using the Paint event to draw the handle. Remember you will need to
draw the handle on the form, not the picture box.
Hope this helps
Jay
Quote:
> Chris,
> You lost me on one part of your response. How do I use the mouse down and
> mouse up events on the handle, when the handle does not appear to be
> available for a picturebox control? When a picturebox control (and all
other
> controls, as far as I know) are placed on a form, the only options for the
> border are None, Fixed Single, and Fixed 3D. Resizeable only appears to be
> an option when using a form. Am I missing something here?
> Eric
> > Use the mouse down and mouse up events on the handle, using a boolean
> value
> > you can know when the user is holding down the handle, and when he lets
> > go... You can then use mouse coordinates (e.X, e.Y in events) to resize
> the
> > picture from its current position.
> > -Chris