Click here to Skip to main content
16,005,552 members
Home / Discussions / C#
   

C#

 
AnswerRe: TreeView Node Click Pin
BoneSoft9-Jun-06 10:57
BoneSoft9-Jun-06 10:57 
GeneralRe: TreeView Node Click Pin
Richard Andrew x649-Jun-06 11:07
professionalRichard Andrew x649-Jun-06 11:07 
GeneralRe: TreeView Node Click Pin
BoneSoft9-Jun-06 11:33
BoneSoft9-Jun-06 11:33 
QuestionDeleting rows in streams Pin
NaNg152419-Jun-06 9:28
NaNg152419-Jun-06 9:28 
AnswerRe: Deleting rows in streams Pin
Ed.Poore9-Jun-06 10:07
Ed.Poore9-Jun-06 10:07 
GeneralRe: Deleting rows in streams Pin
NaNg152419-Jun-06 10:26
NaNg152419-Jun-06 10:26 
GeneralRe: Deleting rows in streams Pin
Ed.Poore9-Jun-06 12:50
Ed.Poore9-Jun-06 12:50 
QuestionComboBox binding problem . Pin
microuser_20009-Jun-06 8:37
microuser_20009-Jun-06 8:37 
hellow to all i am trying to bind combobox , and to put in it data from database ,

i had write the following code ,

try
{
string sConnection = @"provider=microsoft.jet.oledb.4.0;data source=C:\BIG_Project.mdb";
System.Data.OleDb.OleDbConnection OleDbConn = new System.Data.OleDb.OleDbConnection(sConnection);
System.Data.DataSet ds1 = new System.Data.DataSet("tbl_Users_Catagory") ;
string OleDBUserCatagory = "SELECT * FROM tbl_Users_Catagory";
System.Data.OleDb.OleDbDataAdapter OleDBAdptrUserCatagory = new System.Data.OleDb.OleDbDataAdapter(OleDBUserCatagory,OleDbConn);

OleDBAdptrUserCatagory.FillSchema(ds1,System.Data.SchemaType.Source,"tbl_Users_Catagory");
OleDBAdptrUserCatagory.Fill(ds1,"tbl_Users_Catagory");


cmb_Catagory.DataSource = ds1;
cmb_Catagory.DisplayMember = "Catagory_Name";
cmb_Catagory.ValueMember = "Catagory_Num";
cmb_Catagory.SelectedIndex = -1;


}

catch (Exception ex)

{
MessageBox.Show(ex.Message);

}

i recive this message , could not bind to the new display member
thxx for anyhelp ,
AnswerRe: ComboBox binding problem . Pin
Paul Brower9-Jun-06 9:12
Paul Brower9-Jun-06 9:12 
QuestionVisual C# and goto startup form Pin
Saamir9-Jun-06 7:47
Saamir9-Jun-06 7:47 
AnswerRe: Visual C# and goto startup form Pin
Alexander Wiseman9-Jun-06 7:58
Alexander Wiseman9-Jun-06 7:58 
GeneralRe: Visual C# and goto startup form Pin
Saamir10-Jun-06 4:49
Saamir10-Jun-06 4:49 
QuestionC# designer Pin
Brandon Frye9-Jun-06 7:08
Brandon Frye9-Jun-06 7:08 
AnswerRe: C# designer Pin
LongRange.Shooter9-Jun-06 7:22
LongRange.Shooter9-Jun-06 7:22 
GeneralRe: C# designer Pin
Brandon Frye9-Jun-06 7:38
Brandon Frye9-Jun-06 7:38 
QuestionRegistry Scanner c# Pin
j1mb0jay9-Jun-06 5:45
j1mb0jay9-Jun-06 5:45 
AnswerRe: Registry Scanner c# [modified] Pin
LongRange.Shooter9-Jun-06 6:44
LongRange.Shooter9-Jun-06 6:44 
GeneralRe: Registry Scanner c# [modified] Pin
j1mb0jay9-Jun-06 6:50
j1mb0jay9-Jun-06 6:50 
GeneralRe: Registry Scanner c# [modified] Pin
LongRange.Shooter9-Jun-06 7:06
LongRange.Shooter9-Jun-06 7:06 
JokeRe: Registry Scanner c# Pin
BoneSoft9-Jun-06 11:04
BoneSoft9-Jun-06 11:04 
Questionchange form title (text) base on application Pin
donkaiser9-Jun-06 4:54
donkaiser9-Jun-06 4:54 
AnswerRe: change form title (text) base on application Pin
Stefan Troschuetz9-Jun-06 4:58
Stefan Troschuetz9-Jun-06 4:58 
AnswerRe: change form title (text) base on application Pin
Alexander Wiseman9-Jun-06 4:59
Alexander Wiseman9-Jun-06 4:59 
GeneralRe: change form title (text) base on application Pin
donkaiser9-Jun-06 5:20
donkaiser9-Jun-06 5:20 
QuestionDesign question Pin
Elina Blank9-Jun-06 4:52
sitebuilderElina Blank9-Jun-06 4:52 

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.