blah blah blah is here! blah blah » Close

1
votes
1 answers

Unique Lists

eeboy
353

I want to have a list that will only contain unique entries. The uniqueness will be determined by a GUID. Here is what I was thinking... [code] interface LibraryListItem { Guid Guid { set; get; } } class ...

0
votes
1 answers

Programatically add user controls to toolbox(VS2008)

Hi, I want to create a setup project such that I can programatically install my user controls to the toolbox. I tried the following code: System.Type t = System.Type.GetTypeFromProgID("VisualStudio.DTE.9.0"); ...

-1
votes
2 answers

how to make my appln to look in professional way.!??

what i'am asking is that.., i'want my appln to install to C:\Program Files\... and also i'want to add it to appwiz.cpl (control panel -> Programs and features).., also reply how to UnInstall the software from appwiz.cpl.., plz hel ...

1
votes
1 answers

Visual C# Treeview finding a node and adding on to it

Mort
15

I am trying to search for a name of a specific node in a TreeView and add a node under that one, but I'm not sure how. Here's what I came up with: [code]TreeNode[] addonNode = myTreeView.Nodes.Find("abc", true);[/code] Afte ...

Feedback