Oh, by the way... I've done something simliar... I didn't mention it, but what turns out is not as pretty as dragging and dropping something in windows. You have to account for moving the mouse over other controls and such. So, although it's an interesting excersise, you might not want to do it unless its necessary part of making your app function. Not to disuade you, I use it and its coolio.
Create a form. Create an unbound image on the form, with no picture in it, name it: backing. Create 2 boxes, name then box X and Y.
Private Sub Backing_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
Me!BoxX = x
Me!BoxY = y
End sub
I think everything i mentioned in the last post sort of required some research. Most of the things you can find in the help files, or are posted on this site. This site is how I figured it out myself. So run some searches on your questions, I'll help you out if you can find the answers though. Mark P.
Bleh