Drag And Drop With ListViews
Jul 7, 2011
I am currently making an application manager program that allows users to create application shortcuts which are represented as ListViewItems. One feature that my testers keep suggesting is way to drag a normal desktop shortcut into my application, thus avoiding having to recreate lots of application shortcuts.I am pretty clueless as to how to accomplish this, if it is even possible. However, if it can be done, the information i need to extract from the shortcuts are: The name of the shortcut, The associated icon location/file, A description of the program (if there is one), and the executable file location.Also, in the same boat as shortcut drag and drop, just not as difficult- I also am wondering how i could drag and drop ListViewItems into different orders and/or groups.
View 2 Replies
ADVERTISEMENT
Jun 6, 2011
I have two listviews that uses drag and drop to pass values, however I can only pass the value of my first column. What I need is to pass the value of my two columns.
View 1 Replies
Nov 17, 2010
I found and am using this code to move items from listview1 to listview2.Private Sub ListView1_ItemDrag(ByVal sender As Object, ByVal e As System.Windows.Forms.ItemDragEventArgs) Handles ListView1.ItemDrag, ListView1.ItemDrag Dim myItem As ListViewItem
[Code]...
I am planning on having 12 - 14 listviews on my form.Do I have to copy the above code and name each source and destination listview for all combinations that I want to drag to and from? Or, is there code that will 'read' the source listview1 name when clicking an item from the list and 'read' the listview2 name when the cursor is on the listview I am dropping the item into.Been searching but probably not using correct terms.
View 5 Replies
Nov 18, 2009
I am currently working on a drag and drop project and I was wondering if there is a way to drag picturebox1 and drop it in picturebox2; that will snap to a specific location in the picturebox2?
View 2 Replies
Aug 27, 2009
ListView Drag&Drop allow to Drag&Drop between form??
Public Class frmModule
Private Sub ListView1_ItemDrag(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ItemDragEventArgs) Handles ListView1.ItemDrag[code]....
Can it be drap and drop item to other form control??How to write the event when mouse up at the other form control?
View 2 Replies
Oct 31, 2010
I am using Excel 2007, VS2008 Pro.I am building a VSTO Add-in that requires "drag and drop from Excel cells to a drag-enabled task pane".So far I notice that I can only drag and drop within the cells themselves. It does not allow me to drop into the task Pane or drag past the sheet limits.(http:)[url]...
Note: The task pane has drag drop enabled, I ahve already tested I can drag/drop from task pane to excel but I need to do this the other way around?
View 1 Replies
May 25, 2011
I am trying to figure out a way to include the listview's tag field when dragging one listview's subitems into another listview. I am hoping someone here has experience with this. My Listview drag code is below - the two listviews that I am dragging subitems into or from are LV1 and LV3. Also, this is being done in Visual Basic 2008 and the project is a windows application.
[Code]...
View 4 Replies
Oct 20, 2010
drag and drop nodes within the same tree (not between trees) when users drag and drop nodes within the tree, give them the option to move the original node to a new location within the tree OR to just copy the original node in a new location (seems complex but I have a month to figure this out). change the system default blue highlight for selected nodes to another color change the system default cursors for invalid and valid drops (instead of the circle with slash indicating invalid target, i want a red minus) and (instead of the little plus sign with little box indicating a valid target, i want just a big green plus sign) add a red insert line to indicate where the node would be dropped within a tree also drag and drop the text of a node from the tree to a textbox add a "folder" image next to parent nodes and a "document" image next to children nodes
I have looked through the internet but I am having difficulty sorting through all the information available (I see a lot of information for Visual Basic 5 and 6, and those codes don't work for me in visual studio 2008). I can email anyone my code I have so far.
Public Class Form1
Private MouseIsDown As Boolean = False
Public Sub TreeView_ItemDrag(ByVal sender As Object, ByVal e As ItemDragEventArgs)Handles TreeView1.ItemDrag
[Code]....
View 4 Replies
Apr 5, 2011
Is it possible to reorder the elements of a drop down list (combobox) via drag and drop?For example, when the list is dropped down, I want the user to be able to drag the items up or down to reorder them. I tried this (and some google searching) but I'm wondering if its just not possible:
Private Sub cmbClassLists_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles cmbClassLists.MouseDown
If cmbClassLists.DroppedDown And Not cmbClassLists.SelectedIndex = -1 Then
[code].....
View 2 Replies
Jun 23, 2009
I want to be able to hold CTRL down to select multiple text entries and drag them all to certain text boxes. Or even one at a time, but once I try dragging another word into the box it replace the first one. Is there any way to just have it add to the text box rather than replace it?
And if possible, place a "-" between each entry?
This is the pop-up form with the listbox that contains the words to drag:
Private Sub ListBox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles ListBox1.MouseDown
ListBox1.DoDragDrop(ListBox1.SelectedItem, DragDropEffects.Copy)
[Code]....
View 13 Replies
Jan 20, 2011
I am wondering how to do simple drag and drop in wpf? All examples I found over the new were in C#
View 8 Replies
Feb 23, 2010
How would i set a panel to allow drag-n-drop from explorer to my program, only with dll and exe files though.
View 4 Replies
Sep 9, 2009
I am writing a small program that has two list box's which are populated from my sql database. I want to drag an item from LB1 to column1 in a datagridview and drag an item from LB2 to column2 in the same datagridview.
I am getting close, but I am having trouble getting the data to drop. I did some testing and I can drop a string, but I am not able to get the string data from my listbox. I just get a datarowview. I see the string inside the "itemarray", but cannot get to it.
Here is my dodragdrop:
LB_OriginalPallets.DoDragDrop(LB_OriginalPallets.SelectedItems(indexOfOldPalletToDrag), DragDropEffects.Copy)
View 10 Replies
Mar 26, 2012
How to implement Drag and Drop multiple objects in the form in Visual Basic. The drag-able object will be provided within the same form but in a different panel. I must be able to delete the object also.
View 1 Replies
Oct 20, 2010
I am trying to generate buttons and allow the user to drag and drop them.
I have this sub:
Sub Form1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick
Dim nodebtn As New Button
[Code]....
Also if I declare the nodebtn as a global variable, I do not face this problem, the button is dragable. However when I click to add new buttons, no new button is generated, instead a button is generated with the count on it.
View 1 Replies
Jul 10, 2009
I have this app that gets the files/subdirectories from a selected one (it stores the files with their icon in a listview), I was wondering how could I drag a selected file from the listview into another directory (outside of the form), let's say the desktop.
How can I do this? I have only found examples of how to do drag/drop within the same form.
View 6 Replies
Oct 28, 2009
In my Project I want to Drag the text of the Text Box into any Particular cell of the DataGrid which ever user wants to,
but my problem is I am not able to find the Coordinates of the cell cell in which user will drop the text and hence not able to put the text into desired Cell.
Code snippet below shows the code in the Dragdrop event of the dataGrid
Dim sText As String = ""
Dim nrow As Integer = 'Need to get this rowIndex
Dim nCol As Integer = 'Need to get this ColIndex
[Code].....
View 4 Replies
Jan 29, 2010
I have an app that usually sits on the desktop. how I can drag & drop a data file onto the icon, which would start the app and load the data file.
View 15 Replies
Jun 22, 2009
how can i implement dragdrop between 2 child forms (each containing a listbox)?
View 2 Replies
Mar 19, 2011
I have a usercontrol, UserControl1, which I want to drag and drop on my form, Form1.
View 2 Replies
Jan 23, 2010
I am very new to Visual Basic, but I am trying to build a simple program, and how to create a drag and drop that works, but I can't seem to figure out how to change the display as I drag across the screen. Basically, right now I have a circle with a line through it that goes across my screen as I drag and what I would like is for it to be the text that I am dragging that drags across the screen, just like a file on my desktop would do when I grab it and try to drag it somewhere else on the desktop. I have put my code in below, how to get rid of the circle with the line through it, and replace it with the actually text that I am trying to drag. I am using Visual Basic 2010
Public Class frmDragDrop
Private Sub labelMouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lbdragfrom.MouseDown
lbdragfrom.DoDragDrop(lbdragfrom.Text, DragDropEffects.Copy)
End Sub
[Code] .....
View 12 Replies
Jan 8, 2010
I've seen the code on this site to setup a drag-and-drop between 2 listboxes (and that works perfectly for me), but I have a need to be able to move items between up to 12 listboxes. For example, I move an item from listbox1 to listbox2; at some point in the future, I need to be able to move that same item from listbox2 to listbox3, then at another point in time from listbox3 back to listbox1, etc. When I make these moves, I need the item to be removed from its previous location. I've attempted to modify the 2-listbox code to include, on my test form, a third listbox, but that code copies to the third listbox, and when I attempt to move the item from the third listbox to the second, it, too, only copies and does not remove the item from listbox3.
View 1 Replies
Nov 11, 2009
I'm a relative novice at coding in visual basic 2008 and am trying to implement dragging and dropping filenames from windows explorer into a listbox within my VB app. My customer wants to do this as opposed to selecting filenames from a directory browsing window.
View 3 Replies
May 19, 2011
I noticed the allow drop property for textbox controls. Is it possible to drag and drop from one textbox to another?
View 2 Replies
Jun 21, 2010
I'm creating an application in which the form contains one datagridview and 20 pictureboxes.When the DGV is populated, the user will drag a row from DGV and drop in any one of the pictureboxes.The picturebox should able evaluate a column value(say column 1) from the dropping row and according to that it should change its picture.
View 5 Replies
Jan 21, 2010
How do I drag and drop a control (such as a GroupBox) during runtime from one location on a form to another? I simply want to move it around during runtime.
View 6 Replies
Apr 17, 2010
I am trying to make a nifty little drag control.I have a custom list that I start the drag from.As i enter a main panel for my program, I create a control that is made from the source control.I then draw the control to a bitmap, create a nativewindow that is semitrasparent and draw the bitmap to it...giving the transparent file drag illusion.It all works great if I drag the control just under the cursor. If I draw it on the cursor, it changes focus to the nativewindow.I would like to know how to either be able to keep the focus on the panel so that the dragleave is not fired until the panel is left or interupt the underlying commands so that I can pass the info to the panel.
View 1 Replies
Dec 21, 2009
OK, so I want to read in the file as whatever someone drags and drops on the .exe file. Once I get that file to be used as the file in the program, I'm fine, I know what I'm doing, but I'm having no luck getting that part done.So far I have this that I found:
Code:
Dim s As String = Command$()
Console.WriteLine(s)
[code].....
View 5 Replies
Sep 10, 2009
code for dragging and dropping picturebox around
View 6 Replies
Jul 16, 2010
how I would enable my application to load a file by dragging and dropping it into the Form or Textbox.
Dim droppedFileLocation As String '= dropped file location
Dim myReader As New System.IO.StreamReader(droppedFileLocation)
TextBox1.Text = myReader.ReadToEnd
myReader.Close()
View 2 Replies