Click here to Skip to main content
15,891,943 members
Home / Discussions / C#
   

C#

 
GeneralRe: is the order of parameters addition to a command for update command realy required? Pin
PIEBALDconsult11-Oct-07 5:37
mvePIEBALDconsult11-Oct-07 5:37 
GeneralRe: is the order of parameters addition to a command for update command realy required? Pin
Dave Kreskowiak11-Oct-07 12:07
mveDave Kreskowiak11-Oct-07 12:07 
Questionpicturebox image Pin
NewToAspDotNet10-Oct-07 23:07
NewToAspDotNet10-Oct-07 23:07 
AnswerRe: picturebox image Pin
half-life10-Oct-07 23:24
half-life10-Oct-07 23:24 
QuestionProperty Grid Pin
Lucian.Palcu10-Oct-07 23:05
Lucian.Palcu10-Oct-07 23:05 
AnswerRe: Property Grid Pin
TJoe11-Oct-07 2:22
TJoe11-Oct-07 2:22 
GeneralRe: Property Grid Pin
visualhint11-Oct-07 9:11
visualhint11-Oct-07 9:11 
QuestionTreeveiw(add nodes) Pin
chanzeb10-Oct-07 22:53
chanzeb10-Oct-07 22:53 
con.Open();
object[] objArrRestrict;
//select just TABLE in the Object array of restrictions.
//Remove TABLE and insert Null to see tables, views, and other objects.
objArrRestrict = new object[] {null, null, null, "TABLE"};
DataTable schemaTbl;
schemaTbl = con.GetOleDbSchemaTable(OleDbSchemaGuid.Tables,objArrRestrict);
// Display the table name from each row in the schema
foreach (DataRow row in schemaTbl.Rows)
{
listBox.Items.Add(row["TABLE_NAME"]);

}


instead of using list box,i want to add tables to tree veiw
what can i do???????????/

chanzeb chaudhary
AnswerRe: Treeveiw(add nodes) Pin
Spunky Coder10-Oct-07 22:57
Spunky Coder10-Oct-07 22:57 
GeneralRe: Treeveiw(add nodes) Pin
chanzeb10-Oct-07 23:03
chanzeb10-Oct-07 23:03 
GeneralRe: Treeveiw(add nodes) Pin
Spunky Coder10-Oct-07 23:15
Spunky Coder10-Oct-07 23:15 
GeneralRe: Treeveiw(add nodes) Pin
chanzeb10-Oct-07 23:43
chanzeb10-Oct-07 23:43 
QuestionFile being used Pin
-spy-10-Oct-07 22:33
-spy-10-Oct-07 22:33 
AnswerRe: File being used Pin
Christian Graus10-Oct-07 22:34
protectorChristian Graus10-Oct-07 22:34 
AnswerRe: File being used Pin
Luc Pattyn10-Oct-07 22:35
sitebuilderLuc Pattyn10-Oct-07 22:35 
QuestionC# Dictionary: From item to key? Pin
Extrakun10-Oct-07 22:27
Extrakun10-Oct-07 22:27 
AnswerRe: C# Dictionary: From item to key? Pin
Christian Graus10-Oct-07 22:33
protectorChristian Graus10-Oct-07 22:33 
QuestionTabPages controls created on the fly [modified] Pin
dave.kelly10-Oct-07 21:58
professionaldave.kelly10-Oct-07 21:58 
AnswerRe: TabPages controls created on the fly Pin
Rob Philpott10-Oct-07 22:30
Rob Philpott10-Oct-07 22:30 
AnswerRe: TabPages controls created on the fly Pin
Spunky Coder10-Oct-07 22:32
Spunky Coder10-Oct-07 22:32 
AnswerRe: TabPages controls created on the fly Pin
Rob Philpott10-Oct-07 22:34
Rob Philpott10-Oct-07 22:34 
GeneralRe: TabPages controls created on the fly Pin
dave.kelly10-Oct-07 22:41
professionaldave.kelly10-Oct-07 22:41 
Questiondoubts about abstract class and interface Pin
VG Ramanan10-Oct-07 21:25
VG Ramanan10-Oct-07 21:25 
AnswerRe: doubts about abstract class and interface Pin
half-life10-Oct-07 21:38
half-life10-Oct-07 21:38 
GeneralRe: doubts about abstract class and interface Pin
Lutosław10-Oct-07 21:55
Lutosław10-Oct-07 21:55 

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.