Click here to Skip to main content
16,003,319 members
Home / Discussions / C#
   

C#

 
GeneralRe: IFilter Pin
Pete O'Hanlon4-Feb-08 3:04
mvePete O'Hanlon4-Feb-08 3:04 
Questioni want to insert a new node regarding this code.but insert is not working.. Pin
samidhas4-Feb-08 0:04
samidhas4-Feb-08 0:04 
GeneralRe: i want to insert a new node regarding this code.but insert is not working.. Pin
Guffa4-Feb-08 1:21
Guffa4-Feb-08 1:21 
GeneralRe: i want to insert a new node regarding this code.but insert is not working.. Pin
samidhas4-Feb-08 4:06
samidhas4-Feb-08 4:06 
GeneralRe: i want to insert a new node regarding this code.but insert is not working.. Pin
Guffa4-Feb-08 8:58
Guffa4-Feb-08 8:58 
GeneralRe: i want to insert a new node regarding this code.but insert is not working.. Pin
samidhas4-Feb-08 18:43
samidhas4-Feb-08 18:43 
Questionhow to insert a new node in a tree view programatically? Pin
samidhas3-Feb-08 23:32
samidhas3-Feb-08 23:32 
GeneralRe: how to insert a new node in a tree view programatically? Pin
Mircea Puiu3-Feb-08 23:45
Mircea Puiu3-Feb-08 23:45 
Simple example:
string someText = yourTextBox.Text;
TreeNode aNode = new TreeNode();
   aNode.Name = "some name here";
   aNode.Text = someText;
   yourTreeCtrl.Nodes.Add(aNode);

You could get more browsing the MSDN articles[^], couldn't you? Wink | ;)

SkyWalker

GeneralWebParts.. Pin
razanabanu3-Feb-08 23:24
razanabanu3-Feb-08 23:24 
GeneralRe: WebParts.. Pin
_tasleem4-Feb-08 1:27
_tasleem4-Feb-08 1:27 
QuestionHow to capture Pc remote control keycodes? Pin
dudiba3-Feb-08 23:18
dudiba3-Feb-08 23:18 
GeneralEdit Data in DataGridView Control Pin
D i x y3-Feb-08 22:50
D i x y3-Feb-08 22:50 
GeneralRe: Edit Data in DataGridView Control Pin
Mircea Puiu3-Feb-08 23:50
Mircea Puiu3-Feb-08 23:50 
QuestionElement name of serialized List<t></t> Pin
Nathan Gloyn3-Feb-08 22:45
Nathan Gloyn3-Feb-08 22:45 
GeneralRe: Element name of serialized List Pin
TJoe4-Feb-08 1:59
TJoe4-Feb-08 1:59 
GeneralRe: Element name of serialized List Pin
Nathan Gloyn4-Feb-08 3:01
Nathan Gloyn4-Feb-08 3:01 
GeneralRe: Element name of serialized List Pin
TJoe4-Feb-08 3:08
TJoe4-Feb-08 3:08 
GeneralRe: Element name of serialized List Pin
Nathan Gloyn4-Feb-08 3:24
Nathan Gloyn4-Feb-08 3:24 
GeneralRe: Element name of serialized List Pin
TJoe4-Feb-08 3:47
TJoe4-Feb-08 3:47 
GeneralRe: Element name of serialized List Pin
Nathan Gloyn4-Feb-08 4:08
Nathan Gloyn4-Feb-08 4:08 
GeneralHitting Back button Pin
razanabanu3-Feb-08 22:35
razanabanu3-Feb-08 22:35 
GeneralRe: Hitting Back button Pin
Mircea Puiu3-Feb-08 23:55
Mircea Puiu3-Feb-08 23:55 
QuestionIs there free code for plot 3D figures? Pin
Seraph_summer3-Feb-08 21:22
Seraph_summer3-Feb-08 21:22 
AnswerRe: Is there free code for plot 3D figures? Pin
Mircea Puiu3-Feb-08 23:56
Mircea Puiu3-Feb-08 23:56 
Questionhow to read filename? Pin
samidhas3-Feb-08 21:15
samidhas3-Feb-08 21:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.