Hallo Wissende,
im Zuge der Anfrage eins drunter (Verschiebung einer Form nur innerhalb einer anderen Form stieß ich auf die Form-Ereignisse:
OLEDragDrop, OLEDragOver, DragDrop, DragOver.
nachstehenden Code naute ich in Form1 und Form2 ein. Dann startete ich beide und verschob sie übereinander, auseinander usw.
Keine Msgbox kam.
Nun meine Frage, wann treten diese Ereignisse ein?
Die Hilfe dazu habe ich gelesen. Das half mir aber nicht
Ich habe VB5.0.
Private Sub Form\_DragDrop(Source As Control, X As Single, Y As Single)
MsgBox "dragdrop1"
End Sub
'
Private Sub Form\_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single)
MsgBox "oledragdrop1"
End Sub
'
Private Sub Form\_DragOver(Source As Control, X As Single, Y As Single, State As Integer)
MsgBox "dragover1"
End Sub
'
Private Sub Form\_OLEDragOver(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single, State As Integer)
MsgBox "oledragover1"
End Sub
Danke ^ Gruß
Reinhard