Hide / Show The Controls Depending On What Is Selected In Tree View?
Apr 8, 2010
Is there any examples with a treeview like this [URL] /scree...tinel-smod.png is it a case of having to draw each form how you would like to then hide/show the controls depending on what is selected in tree view????
View 14 Replies
ADVERTISEMENT
Jan 24, 2011
Does vs2010 have this under a windows form?I have a text field that i want to show/hide depending if the user wants to view it. Like vista does "show more information"
View 1 Replies
May 5, 2012
I'm curious if it is possible to hide a group of text boxes from view in a form until a particular condition is met, and to have a custom set of text boxes for that condition. To give an example; I want radio buttons offering choices for a manner of searching records, the user selects one and then a specific set of text boxes are displayed for the user to utilize, if a different option is chosen a different set of text boxes will be shown. Is this something that can be done?
View 7 Replies
Jan 23, 2012
example how to create a right click on selected node in tree view..example
parentNode = mdiform
childnode1 = child form1
childnode2 = chile form2
which ever i select a different node a corresponding form will appear with a mouseup event.
i must choose first a node to view my contextmenu.
View 2 Replies
Feb 8, 2012
I have a couple of user controls, which I show in my main form.
So let's say here's what i want:
Sub Show_Control1()
UserControl1.Show
'CODE TO HIDE EVERY OTHER DISPLAYED USER CONTROL ON THE MAIN FORM
End sub
Right now I have to hide them one by one with hide, because I don't know what's the current displayed form.
View 2 Replies
Mar 11, 2010
i m using these code for selecting data grid row [code]but , when no of row more then grid showing rows then grid not show selected row in grid screen, for showing selected row we have to use scroll bar, my problem is how to show selected row in grid automatically
View 2 Replies
May 25, 2010
The ContextMenuStrip tied to the ListView control. However, the right click option (edit)appear where ever i click on the ListView area, this gives me exceptional error because the implementation of edit can only cope with a selected row. I only want it to appear when on a selected row (blue highlighted row). How can i do it?
View 1 Replies
Jun 9, 2009
the VB .net experts. I added the following code and I get an error as shown below.
[CODE]....
View 8 Replies
Dec 29, 2009
I want to develop a tree view and list view form by using vb6, how to construct a tree view and list view form?
View 1 Replies
Jan 2, 2012
My program has a textbox and a listview. In the list view i have added three person's name, John, Kat, Adel.
How do I make it such that when John's name is selected in list view, John's age is automatically displayed in the text box?
And when Kat's name is selected in list view, Kat's age is automatically displayed in the text box?
View 3 Replies
Oct 16, 2011
I have a datagridview with transaction bindingsource I want the datagrid to show the sorted rows only not all the records when i enter a value into a textbox and click button sort.
View 1 Replies
Jun 14, 2011
Just wondering how I can populate the child node in the following coding (I am able to populate the parent node but still wondering how to list out the child nodes)
===Extra Info===
I have a class to retrieve the Category Table (CategoryID, CateogryName, ParentID) and stored it via List<T>, when I need it, I declare CateogryDAL pass it to CateogryData.
[code].....
View 12 Replies
Mar 27, 2010
i want to create tree view of my computer in windows application in vb.net 2005
View 1 Replies
Oct 5, 2007
how do i add something like the Icons i saw here - [URL]
View 4 Replies
Apr 21, 2011
I have a treeview control in wpf..i need to add an image at evry node.how is it possible?
View 2 Replies
Aug 13, 2009
I am trying to find a quick, step by step tutorial on on to implement a tree view for my intranet that will show all the computer accounts in my domain. (this is obliviously only step number one, because once i can see them, I want to be able to query information from them.but one thing at a time right?)
View 1 Replies
Nov 8, 2009
how to get checked value from tree view? My treeview value is from database.
View 3 Replies
Aug 23, 2011
how to do vertical scrolling in tree view?
View 7 Replies
Jul 15, 2009
anyone know how to use metric to do the tree view system ?????
View 4 Replies
Jun 4, 2012
I have a requirement. I have a wcf method add and delete which takes person object as parameter. I retrieve these methods into a tree view.
Now, when I click on the node for eg. ADD, I need to retrieve the parameters into another tree view.
Requesting help for this situation.
View 1 Replies
Apr 4, 2012
Is it possible and if so, how does one go about doing such a thing. I am loading a network directory in a treeview. Can the parent node be disabled, meaning it can't be selected, it's available for viewing only, but leave the child nodes selectable?
View 2 Replies
Dec 21, 2009
how to rename node in an tree view?
View 1 Replies
Apr 21, 2009
I am loading the directories from my C drive into a treeview using the code below. It takes forever due to the number of folders. Is it possible to have this only populate down 1 level and then use a NodeMouseClick Event to drill down further, in the same treeView, if the user desires to do so? How would I amend this code to do this?
[Code]...
View 5 Replies
Feb 14, 2009
Tree View in ListView or GridView
View 9 Replies
Oct 15, 2011
The following code worked with 2.0 Framework, now with NPGSQL 2.0.11 and framework 4.0, this is erroring out despite Pooling=False for the connection. The underlying logic is that add nodes to treeview; for each node added, immediately get subnodes and populate...
vb
Private Sub LoadRequirements(ByVal parnode As TreeNode)
Try
Dim CMd1 As NpgsqlCommand
CMd1 = New NpgsqlCommand
[code]....
View 10 Replies
May 21, 2012
I am Developing a Application, originally i had divided a form by splitter and on left Treeview and in Right it was DatagridView. Now the requirement is to add treeview in same window. That is either Listview with Treeview in it OR DatagridView with Treeview in It.
View 4 Replies
Aug 23, 2011
How to do vertical scroll in tree view?
View 1 Replies
Mar 27, 2009
I've used programs before which have a treeview type panel which has a text box... what is this and how can I do it?
View 4 Replies
Aug 22, 2010
How i can do once I click on node1 that change to tab 3 for example
View 4 Replies
Jun 19, 2012
What is the appropriate declaration such as "ValueChanged" or "Click" for a NumericUpDown that will execute the code when I press enter. I already know that setting the "AcceptButton" property of the main form to a default button will not work, especially if I want a different button to be selected depending on which control I give focus. How do I accomplish this?
PS: Is the syntax any different from Visual Basic 2010 Express than it is on Visual Studio 2012 RC (running in Visual Basic Mode)?
View 17 Replies