Can I set a control with GUICtrlSetState ( -1, $GUI_DROPACCEPTED ) to where you can only drop the item in said control?
[Example Code: Begin]
$editInput = GUICtrlCreateEdit("", 16, 24, 289, 81, BitOR ( $ES_AUTOVSCROLL,$ES_WANTRETURN)) ;this will be the only control you can drop in, all other controls and the main GUI, will display the ‘access denied cursor.’
GUICtrlSetState(-1, $GUI_DROPACCEPTED)
[Example Code: End]
[Example Code: Begin]
$editInput = GUICtrlCreateEdit("", 16, 24, 289, 81, BitOR ( $ES_AUTOVSCROLL,$ES_WANTRETURN)) ;this will be the only control you can drop in, all other controls and the main GUI, will display the ‘access denied cursor.’
GUICtrlSetState(-1, $GUI_DROPACCEPTED)
[Example Code: End]