I've got a base image for an item and some common adornments. The adornments
reflect the state of the item being shown in the list. Stuff like padlock
for locked, cogs for in-use and the like. I've got the code that dynamically
generates an appropriate image based on the state.
The problem is ...
more >>
Hi all;
Private Sub cmdShow_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles cmdShow.Click
frmAbout.Show()
End Sub
Private Sub cmdHide_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles cmdHide.Click
frmAbout.Hide()
End Sub
In V...
more >>
Hi,
I am populating a tree view in vb.net. I would like to ask if there is a way
for the treeview node to have a "hidden" ID asssoiated with it.
when the user clicks on the node a wish to go away to a database and look a
record up based on this "hidden" ID.
The text of the node will not d...
more >>
If anyone has struggled with this, please respond. Thank you.
I have an arraylist of Employee as described below. Note that Employee has
a property called Name which is an object type (its properties are
FirstName, MiddleName, LastName).
I want to bind an arraylist of Employee to the datag...
more >>