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

C#

 
AnswerRe: SqlConnection vs IDbConnection Pin
Simon_Whale14-Jan-13 0:01
Simon_Whale14-Jan-13 0:01 
QuestionLINQ with List Pin
Member 873185913-Jan-13 9:48
Member 873185913-Jan-13 9:48 
AnswerRe: LINQ with List Pin
J4amieC13-Jan-13 21:47
J4amieC13-Jan-13 21:47 
AnswerRe: LINQ with List Pin
Simon_Whale14-Jan-13 1:17
Simon_Whale14-Jan-13 1:17 
GeneralRe: LINQ with List Pin
Member 875312115-Jan-13 6:35
Member 875312115-Jan-13 6:35 
AnswerRe: LINQ with List Pin
Member 873185921-Jan-13 6:36
Member 873185921-Jan-13 6:36 
Questionhow i get data from datatable Pin
a1_shay13-Jan-13 6:58
a1_shay13-Jan-13 6:58 
AnswerRe: how i get data from datatable Pin
PIEBALDconsult13-Jan-13 13:38
mvePIEBALDconsult13-Jan-13 13:38 
I can't quite tell what you are trying to do there, but (dt is a DataTable, right?) you could try:

dt.DefaultView.RowFilter = "area=" + areaname ;
DropDownList2.DataSource = dt.DefaultView ;


Edit: Here's a full working example.

            System.Data.DataRow dr ;

// Define a State table
            System.Data.DataTable state = new System.Data.DataTable("State");
            state.Columns.Add(new System.Data.DataColumn("ID",typeof(int)));
            state.Columns.Add(new System.Data.DataColumn("Name",typeof(string)));

// Add some rows
            dr = state.NewRow() ;
            dr [ "ID" ] = 1 ;
            dr [ "Name" ] = "Arizona" ;
            state.Rows.Add ( dr ) ;

            dr = state.NewRow() ;
            dr [ "ID" ] = 2 ;
            dr [ "Name" ] = "California" ;
            state.Rows.Add ( dr ) ;

// Set the first ComboBox to display the table
            this.comboBox1.DataSource = state.DefaultView ;
            this.comboBox1.DisplayMember = "Name" ;

// Define a City table
            System.Data.DataTable city = new System.Data.DataTable("State");
            city.Columns.Add(new System.Data.DataColumn("ID",typeof(int)));
            city.Columns.Add(new System.Data.DataColumn("State",typeof(int)));
            city.Columns.Add(new System.Data.DataColumn("Name",typeof(string)));

// Add some rows
            dr = city.NewRow() ;
            dr [ "ID" ] = 1 ;
            dr [ "State" ] = 1 ;
            dr [ "Name" ] = "Phoenix" ;
            city.Rows.Add ( dr ) ;

            dr = city.NewRow() ;
            dr [ "ID" ] = 2 ;
            dr [ "State" ] = 1 ;
            dr [ "Name" ] = "Tucson" ;
            city.Rows.Add ( dr ) ;

            dr = city.NewRow() ;
            dr [ "ID" ] = 3 ;
            dr [ "State" ] = 2 ;
            dr [ "Name" ] = "San Diego" ;
            city.Rows.Add ( dr ) ;

            dr = city.NewRow() ;
            dr [ "ID" ] = 4 ;
            dr [ "State" ] = 2 ;
            dr [ "Name" ] = "Los Angeles" ;
            city.Rows.Add ( dr ) ;

// Set the second ComboBox to display the table
            this.comboBox2.DataSource = city.DefaultView ;
            this.comboBox2.DisplayMember = "Name" ;

// Add a SelectedIndexChanged handler
            this.comboBox1.SelectedIndexChanged += delegate ( object sender , System.EventArgs e )
            {
                System.Data.DataRowView item = this.comboBox1.SelectedItem as System.Data.DataRowView ;

                city.DefaultView.RowFilter = "State=" + item [ "ID" ] ;

                return ;
            } ;

// Select the first State
            this.comboBox1.SelectedIndex = 0 ;


modified 14-Jan-13 9:49am.

GeneralRe: how i get data from datatable Pin
a1_shay13-Jan-13 20:29
a1_shay13-Jan-13 20:29 
GeneralRe: how i get data from datatable Pin
Mycroft Holmes13-Jan-13 21:06
professionalMycroft Holmes13-Jan-13 21:06 
GeneralRe: how i get data from datatable Pin
a1_shay13-Jan-13 21:08
a1_shay13-Jan-13 21:08 
GeneralRe: how i get data from datatable Pin
Mycroft Holmes13-Jan-13 23:58
professionalMycroft Holmes13-Jan-13 23:58 
GeneralRe: how i get data from datatable Pin
a1_shay14-Jan-13 0:53
a1_shay14-Jan-13 0:53 
GeneralRe: how i get data from datatable Pin
PIEBALDconsult14-Jan-13 3:05
mvePIEBALDconsult14-Jan-13 3:05 
GeneralRe: how i get data from datatable Pin
a1_shay14-Jan-13 3:08
a1_shay14-Jan-13 3:08 
GeneralRe: how i get data from datatable Pin
PIEBALDconsult14-Jan-13 3:36
mvePIEBALDconsult14-Jan-13 3:36 
GeneralRe: how i get data from datatable Pin
a1_shay14-Jan-13 12:34
a1_shay14-Jan-13 12:34 
Questionis it possible to work with Word files using Binary Reader and writer? Pin
hurrem13-Jan-13 5:41
hurrem13-Jan-13 5:41 
AnswerRe: is it possible to work with Word files using Binary Reader and writer? Pin
Garth J Lancaster13-Jan-13 10:19
professionalGarth J Lancaster13-Jan-13 10:19 
QuestionDeleting registry values Pin
Erol230913-Jan-13 4:51
Erol230913-Jan-13 4:51 
AnswerRe: Deleting registry values Pin
Thomas Daniels13-Jan-13 6:06
mentorThomas Daniels13-Jan-13 6:06 
GeneralRe: Deleting registry values Pin
Erol230913-Jan-13 8:44
Erol230913-Jan-13 8:44 
GeneralRe: Deleting registry values Pin
Thomas Daniels14-Jan-13 5:57
mentorThomas Daniels14-Jan-13 5:57 
AnswerRe: Deleting registry values Pin
Pete O'Hanlon13-Jan-13 8:56
mvePete O'Hanlon13-Jan-13 8:56 
GeneralRe: Deleting registry values Pin
Erol230913-Jan-13 22:17
Erol230913-Jan-13 22:17 

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.