There is a listbox from where I can drag items to other extern programs like WORD for e.g. .
I only have to use OLEDropMode = manual in VB6.
Does someone know how to do this with FW?
Thanks in advance
Otto
- Code: Select all Expand view
Begin VB.ListBox List1
BeginProperty Font
Name = "Courier"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 450
Left = 0
OLEDragMode = 1 'Automatisch
OLEDropMode = 1 'Manuell
TabIndex = 1
Top = 120
Width = 3015
End