Click here to Skip to main content
15,888,454 members
Home / Discussions / C#
   

C#

 
QuestionProblems Setting up a Form that Emails Tasks [modified] Pin
Jag7720-Aug-06 22:26
Jag7720-Aug-06 22:26 
AnswerRe: Problems Setting up a Form that Emails Tasks Pin
Christian Graus20-Aug-06 23:17
protectorChristian Graus20-Aug-06 23:17 
GeneralRe: Problems Setting up a Form that Emails Tasks Pin
gnjunge20-Aug-06 23:30
gnjunge20-Aug-06 23:30 
QuestionXML Serialize / Deserialize generic dictionary holding various generic types Pin
Florian Storck20-Aug-06 21:52
Florian Storck20-Aug-06 21:52 
AnswerRe: XML Serialize / Deserialize generic dictionary holding various generic types Pin
Florian Storck21-Aug-06 2:50
Florian Storck21-Aug-06 2:50 
QuestionRunning program Pin
drc_no120-Aug-06 21:19
drc_no120-Aug-06 21:19 
AnswerRe: Running program Pin
stancrm20-Aug-06 22:11
stancrm20-Aug-06 22:11 
Questiontree view is not displyed Pin
ayyp20-Aug-06 21:07
ayyp20-Aug-06 21:07 
hi all i try to use tree view in my application but it didn't display the tree insted it display simple text like

Master1 Detail1
Master2 Detail2

i am using IE 6...Here is my code...what's wrong with my code...

TreeNode nodeProdDetail, nodeProdMaster;
nodeProdMaster = new TreeNode();
nodeProdMaster.Text = "Master1";
nodeProdMaster.ID = "1";

nodeProdDetail = new TreeNode();
nodeProdDetail.Text = "Detail1";
nodeProdDetail.ID = "1.1";
nodeProdDetail.NavigateUrl = "SomePage.aspx";
nodeProdMaster.Nodes.Add(nodeProdDetail);

Treeview1.Nodes.Add(nodeProdMaster);

nodeProdMaster = new TreeNode();
nodeProdMaster.Text = "Master2";
nodeProdMaster.ID = "2";

nodeProdDetail = new TreeNode();
nodeProdDetail.Text = "Detail2";
nodeProdDetail.ID = "2.1";
nodeProdDetail.NavigateUrl = "SomeOtherPage.aspx";
nodeProdMaster.Nodes.Add(nodeProdDetail);

Treeview1.Nodes.Add(nodeProdMaster);




ayyp

Questionimplement Download functionality in windows based Application project Pin
joy_priyank20-Aug-06 19:47
joy_priyank20-Aug-06 19:47 
AnswerRe: implement Download functionality in windows based Application project Pin
Nader Elshehabi21-Aug-06 2:28
Nader Elshehabi21-Aug-06 2:28 
GeneralRe: implement Download functionality in windows based Application project Pin
joy_priyank22-Aug-06 0:00
joy_priyank22-Aug-06 0:00 
GeneralRe: implement Download functionality in windows based Application project Pin
Nader Elshehabi22-Aug-06 3:41
Nader Elshehabi22-Aug-06 3:41 
Questionoutlook context menu Error and PREVIEW PANE Problem Pin
K edar V20-Aug-06 19:44
K edar V20-Aug-06 19:44 
AnswerRe: outlook context menu Error and PREVIEW PANE Problem Pin
Nader Elshehabi21-Aug-06 2:07
Nader Elshehabi21-Aug-06 2:07 
GeneralRe: outlook context menu Error and PREVIEW PANE Problem Pin
K edar V21-Aug-06 2:15
K edar V21-Aug-06 2:15 
GeneralRe: outlook context menu Error and PREVIEW PANE Problem Pin
Nader Elshehabi21-Aug-06 3:03
Nader Elshehabi21-Aug-06 3:03 
QuestionDataGrid with Check Boxes Pin
Pinnapureddy20-Aug-06 19:39
Pinnapureddy20-Aug-06 19:39 
AnswerRe: DataGrid with Check Boxes Pin
Nader Elshehabi21-Aug-06 1:57
Nader Elshehabi21-Aug-06 1:57 
GeneralRe: DataGrid with Check Boxes Pin
Pinnapureddy21-Aug-06 21:44
Pinnapureddy21-Aug-06 21:44 
QuestionCrystal Reports and filling dataset/datatable Pin
Glen Harvy20-Aug-06 19:14
Glen Harvy20-Aug-06 19:14 
Questionstartup times woes.... Pin
Super Lloyd20-Aug-06 14:10
Super Lloyd20-Aug-06 14:10 
AnswerRe: startup times woes.... Pin
S. Senthil Kumar20-Aug-06 19:04
S. Senthil Kumar20-Aug-06 19:04 
GeneralRe: startup times woes.... Pin
Super Lloyd20-Aug-06 19:22
Super Lloyd20-Aug-06 19:22 
AnswerRe: startup times woes.... Pin
V.20-Aug-06 22:40
professionalV.20-Aug-06 22:40 
GeneralRe: startup times woes.... Pin
Super Lloyd20-Aug-06 23:57
Super Lloyd20-Aug-06 23:57 

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.