Hi,
I'm trying to deal with drag drop technique and get into trouble with
DragDropEffect:
DragDropEffects.Link and DragDropEffects.Scroll. The explanations of MSDN
about them are short and vague:
Link - The data from the drag source is linked to the drop target.
ScrollScrolling - is about to s...
more >>
Hi,
I have a TreeView control with hierarchy:
A
| - B // source
| - C
D // dest
| - E
Whenever draging B in to D, Item B is removed and B is added into D node.
To implement this task, I ,firstly, write a simple MouseDown event to start
a drag-drop ac...
more >>
I am trying to add a node in System.Windows.Forms.TreeView
in another thread... I am doing this...
--
TreeNode temp = new TreeNode("Work Station " + (i + 1))
MainForm.TreeView.SelectedNode.Nodes.Add(temp);
--
But I get this exception...
--
The action being performed on this control is...
more >>
Hello friends.
In VB6 I used the shape control to make a coloured circle on the form. In
vb.net, I cannot find it.
I understand that there is a control called "region" which does the same
things as a "shape" control. But I cannot find it
in the toolbox.
Can someone tell me where to find t...
more >>