rbulph Posted March 14, 2006 Posted March 14, 2006 I'd like to be able to allow the user to select objects from a range of toolstripbuttons and add those objects to a picture box in two ways: 1. By a normal dragdrop procedure from the button onto the picture box. That's easy enough to achieve. 2. Secondly I'd like to allow him to do add the object by clicking the button, so it is selected, and then clicking on the picture box. That again isn't too hard, except that he needs some visual feedback through the cursor to show that an object is going to be added if he clicks on the picture box, and I'd like to use the dragdrop cursor for that, for consistency. But I can't - if I initiate a dragdrop procedure when the mouse isn't down, the drop occurs as soon as the mouse moves over the picture box, so the cursor only shows for an instant. Any thoughts about how to get this cursor showing when I want it to? Quote
mskeel Posted March 14, 2006 Posted March 14, 2006 Me.Cursor = Cursors.XXX or this.Cursor = Cursors.XXX More Info Quote
rbulph Posted March 15, 2006 Author Posted March 15, 2006 Me.Cursor = Cursors.XXX or this.Cursor = Cursors.XXX More Info And which member of the Cursors collection are you saying is the dragdrop cursor? Quote
mskeel Posted March 15, 2006 Posted March 15, 2006 The one that's not in there...:) Which means XXX is going to have to be a custom cursor that you create, probably by ripping it and cleaning it up. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.