Click here to Skip to main content
15,906,947 members
Home / Discussions / C#
   

C#

 
QuestionConvert Office 2007 Word document to PDF document Pin
mayurp610-Nov-09 1:13
mayurp610-Nov-09 1:13 
AnswerRe: Convert Office 2007 Word document to PDF document Pin
Russ-T10-Nov-09 2:51
Russ-T10-Nov-09 2:51 
GeneralRe: Convert Office 2007 Word document to PDF document Pin
mayurp610-Nov-09 21:24
mayurp610-Nov-09 21:24 
QuestionSymbols Pin
duminda198810-Nov-09 1:09
duminda198810-Nov-09 1:09 
AnswerRe: Symbols Pin
padmanabhan N10-Nov-09 1:23
padmanabhan N10-Nov-09 1:23 
Questionsql connection or another ???????????????? Pin
Mohamed El-Wehishy10-Nov-09 0:26
Mohamed El-Wehishy10-Nov-09 0:26 
Questiondatatable to grid Pin
Member 59031010-Nov-09 0:00
Member 59031010-Nov-09 0:00 
AnswerRe: datatable to grid Pin
dan!sh 10-Nov-09 1:20
professional dan!sh 10-Nov-09 1:20 
QuestionSQL error Pin
spankyleo1239-Nov-09 23:17
spankyleo1239-Nov-09 23:17 
AnswerRe: SQL error Pin
Shameel9-Nov-09 23:50
professionalShameel9-Nov-09 23:50 
GeneralRe: SQL error Pin
spankyleo12310-Nov-09 3:31
spankyleo12310-Nov-09 3:31 
GeneralRe: SQL error Pin
Pete O'Hanlon10-Nov-09 3:42
mvePete O'Hanlon10-Nov-09 3:42 
GeneralRe: SQL error Pin
spankyleo12310-Nov-09 3:46
spankyleo12310-Nov-09 3:46 
GeneralRe: SQL error Pin
Shameel10-Nov-09 7:24
professionalShameel10-Nov-09 7:24 
QuestionHide shape in work document through C# Pin
Pankaj Saha9-Nov-09 22:57
Pankaj Saha9-Nov-09 22:57 
Questionpanel Pin
farokhian9-Nov-09 22:06
farokhian9-Nov-09 22:06 
AnswerRe: panel Pin
The Man from U.N.C.L.E.9-Nov-09 22:28
The Man from U.N.C.L.E.9-Nov-09 22:28 
QuestionSQL create table syntax error? Pin
Emmet_Brown9-Nov-09 22:01
Emmet_Brown9-Nov-09 22:01 
AnswerRe: SQL create table syntax error? Pin
Emmet_Brown9-Nov-09 22:05
Emmet_Brown9-Nov-09 22:05 
AnswerRe: SQL create table syntax error? Pin
Emmet_Brown9-Nov-09 22:24
Emmet_Brown9-Nov-09 22:24 
GeneralRe: SQL create table syntax error? Pin
Luc Pattyn10-Nov-09 1:10
sitebuilderLuc Pattyn10-Nov-09 1:10 
Questiontreeview?this problem has Troubled me for few days Pin
miss YY9-Nov-09 21:30
miss YY9-Nov-09 21:30 
table A
Field: a(char(40)) b(char(40))
q -- ss
q -- fs
q -- ffr
q -- egg
w -- ffh
w -- gykk
e -- hrh
e -- kyk
e -- jjtj
the Purpose: field "a" as father node,field "b" as child node,field "a" should not be repeated!this is part of my code,but it can't meet my Requirements.

public void AddTree(TreeNode pNode)
{
DataSet ds=new DataSet();
DataView dvTree = new DataView(ds.Tables[0]);
foreach (DataRowView Row in dvTree)
{
if (pNode == null)
{ //add father node
TreeNode Node = treeView1.Nodes.Add(Row["a"].ToString());

}
else
{
TreeNode Node = pNode.Nodes.Add(Row["b"].ToString());
}
}


it only can show feild "a" on treeview,like this:
q
q
q
q
w
w
e
e
e it repeat the Field 'a',can someone help me ,thanks very much!! Laugh | :laugh: Poke tongue | ;-P always waiting online
AnswerRe: treeview?this problem has Troubled me for few days Pin
Pete O'Hanlon9-Nov-09 21:56
mvePete O'Hanlon9-Nov-09 21:56 
GeneralRe: treeview?this problem has Troubled me for few days Pin
miss YY9-Nov-09 22:18
miss YY9-Nov-09 22:18 
GeneralRe: treeview?this problem has Troubled me for few days Pin
Pete O'Hanlon9-Nov-09 22:42
mvePete O'Hanlon9-Nov-09 22:42 

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.