blah blah blah is here! blah blah » Close

0
votes
0 answers

Adding my program to context menu c#

Hello, so I'm new here and this is my first post. My question pertains to adding a program I made to the context menu in windows explorer. Let me be more specific. I want to have that when a user clicks on any file, they have the option ...

2
votes
2 answers

List with KeyValuePair and duplicate keys?

cami
30

Hi all, if I create a list like the one as below: [code] List<KeyValuePair<string, string>> list = new List<KeyValuePair<string, string>>(); [/code] Can the same key have multiple values? as in to say, can ...

1
votes
1 answers

Is it possible to add a dropdownlist inside the radiobuttonlist as an item?

Is it possible to add a dropdownlist inside the radiobuttonlist as an item? if so how? Thanks!

1
votes
1 answers

Unique Lists

eeboy
499

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