Ultrawhack
Well-known member
Can anyone please point me to a sample where I can see how textandimagecolumn works in a datagridview. I'd like to include an icon with the column1 text.
Thanks !
Thanks !
dim intiator as string
Sub SourceDGV1_MouseDown
initiator="SourceDGV1"
start dragop
end sub
Sub SourceDGV2_MouseDown
initiator="SourceDGV2"
start dragop
end sub
Sub TargetDGV_DragDrop
if initiator = "SourceDGV1" then
drop from source1
elseif initiator="SourceDGV2"
drop from source2
end if
end sub