Is it possible to "drag and drop" between listboxes in visual c++6?
-
I had seen a couple of articles on drag and drop between listboxes on the .NET framework IDE whihc uses some very helpful built-in functions. However, I am still on VC 6. Just wondering if it is possible to implement the drag and drop feature? Any clues and suggestions welcomed. Thanks.:-O
-
I had seen a couple of articles on drag and drop between listboxes on the .NET framework IDE whihc uses some very helpful built-in functions. However, I am still on VC 6. Just wondering if it is possible to implement the drag and drop feature? Any clues and suggestions welcomed. Thanks.:-O
whatever@whatever.com wrote:
I am still on VC 6.
Look up
CDragListBox
.
Nibu thomas A Developer Programming tips[^] My site[^]
-
I had seen a couple of articles on drag and drop between listboxes on the .NET framework IDE whihc uses some very helpful built-in functions. However, I am still on VC 6. Just wondering if it is possible to implement the drag and drop feature? Any clues and suggestions welcomed. Thanks.:-O
This might help http://www.codeproject.com/info/search.asp?cats=2&searchkw=drag+drop+listbox&Submit1=Search&author=&sd=15+Nov+1999&ed=19+Jan+2007[^]
Nobody can give you wiser advice than yourself. - Cicero ப்ரம்மா
-
whatever@whatever.com wrote:
I am still on VC 6.
Look up
CDragListBox
.
Nibu thomas A Developer Programming tips[^] My site[^]
CDragListBox allows drag and drop within its own listbox for arrangement purposes but not onto another list box. :sigh:
-
This might help http://www.codeproject.com/info/search.asp?cats=2&searchkw=drag+drop+listbox&Submit1=Search&author=&sd=15+Nov+1999&ed=19+Jan+2007[^]
Nobody can give you wiser advice than yourself. - Cicero ப்ரம்மா
Can't really find anything relevant to VC6. :(
-
Can't really find anything relevant to VC6. :(
-
Yeah. Thanks for the effort, but I was looking for dragging and dropping from one listbox to another, rather than within the same listbox for arrangement purpose. I guess such a feature is not supported in VC6. :((
-
Yeah. Thanks for the effort, but I was looking for dragging and dropping from one listbox to another, rather than within the same listbox for arrangement purpose. I guess such a feature is not supported in VC6. :((
whatever@whatever.com wrote:
I guess such a feature is not supported in VC6
This[^] should given an idea. Drag and drop between listboxes is not intrinsically supported but you can provide this support through coding.
Nibu thomas A Developer Programming tips[^] My site[^]
-
I had seen a couple of articles on drag and drop between listboxes on the .NET framework IDE whihc uses some very helpful built-in functions. However, I am still on VC 6. Just wondering if it is possible to implement the drag and drop feature? Any clues and suggestions welcomed. Thanks.:-O
See this article by Paul DiLascia, from his "C++ Q&A" column in the October 2004 issue of MSDN: "Create Client Windows, Drag and Drop Between Listboxes" at http://msdn.microsoft.com/msdnmag/issues/04/10/CQA/[^] It explains the coding needed to obtain drag and drop between different list boxes in the same application. Mike
-
See this article by Paul DiLascia, from his "C++ Q&A" column in the October 2004 issue of MSDN: "Create Client Windows, Drag and Drop Between Listboxes" at http://msdn.microsoft.com/msdnmag/issues/04/10/CQA/[^] It explains the coding needed to obtain drag and drop between different list boxes in the same application. Mike
Thanks! U made my dae. Also thanks to all others who had given their comments. :-D