Click here to Skip to main content
15,918,330 members
Home / Discussions / C#
   

C#

 
AnswerRe: developing a Drawing Editor in C# using OpenGl Pin
Christian Graus3-Jun-07 23:52
protectorChristian Graus3-Jun-07 23:52 
GeneralRe: developing a Drawing Editor in C# using OpenGl Pin
a_david1234-Jun-07 0:14
a_david1234-Jun-07 0:14 
GeneralRe: developing a Drawing Editor in C# using OpenGl Pin
Christian Graus4-Jun-07 0:17
protectorChristian Graus4-Jun-07 0:17 
GeneralRe: developing a Drawing Editor in C# using OpenGl Pin
a_david1234-Jun-07 0:30
a_david1234-Jun-07 0:30 
GeneralRe: developing a Drawing Editor in C# using OpenGl Pin
Christian Graus4-Jun-07 0:38
protectorChristian Graus4-Jun-07 0:38 
GeneralRe: developing a Drawing Editor in C# using OpenGl Pin
Dave Kreskowiak4-Jun-07 8:44
mveDave Kreskowiak4-Jun-07 8:44 
Questionpopulate datagrid Pin
matjame3-Jun-07 22:28
matjame3-Jun-07 22:28 
AnswerRe: populate datagrid Pin
M. J. Jaya Chitra3-Jun-07 22:45
M. J. Jaya Chitra3-Jun-07 22:45 
What version you are using?

If it is 2005 then in the gridview's accessdatasource you can specify the table and in the "where" option you can bind the filter field with the control and select the dropdownlist,

Otherwise if you want to do it in coding write the below coding in the dropdownlist_selectedindexchanged event and don't forget to enable the option "enable Auto post back"


OleDbDataAdapter oda = new OleDbDataAdapter("Select * from Extensions Where FilterByKey = '" + DropDownList1.SelectedItem.ToString() + "'", connect);
connect.Open();
Dataset ds =new Dataset();
oda.fill(ds,"MyTable1");
GridView1.DataSource=ds.Tables[0];
Gridview1.DataBind();




Best Regards,
M. J. Jaya Chitra

GeneralRe: populate datagrid Pin
matjame3-Jun-07 22:51
matjame3-Jun-07 22:51 
GeneralRe: populate datagrid Pin
matjame3-Jun-07 23:02
matjame3-Jun-07 23:02 
GeneralRe: populate datagrid Pin
M. J. Jaya Chitra3-Jun-07 23:05
M. J. Jaya Chitra3-Jun-07 23:05 
GeneralRe: populate datagrid Pin
matjame3-Jun-07 23:26
matjame3-Jun-07 23:26 
Questionread a XML file store on another system Pin
devesh_code3-Jun-07 22:16
devesh_code3-Jun-07 22:16 
AnswerRe: read a XML file store on another system Pin
N a v a n e e t h3-Jun-07 22:23
N a v a n e e t h3-Jun-07 22:23 
GeneralRe: read a XML file store on another system Pin
devesh_code3-Jun-07 22:30
devesh_code3-Jun-07 22:30 
GeneralRe: read a XML file store on another system Pin
Christian Graus3-Jun-07 22:43
protectorChristian Graus3-Jun-07 22:43 
AnswerRe: read a XML file store on another system Pin
Sandeep Akhare3-Jun-07 22:26
Sandeep Akhare3-Jun-07 22:26 
GeneralRe: read a XML file store on another system Pin
blackjack21503-Jun-07 22:48
blackjack21503-Jun-07 22:48 
QuestionHow to abandon paging of crystalreportviewer Pin
renhe3-Jun-07 21:04
renhe3-Jun-07 21:04 
QuestionDependancy between methods of a class Pin
KKrista3-Jun-07 20:50
KKrista3-Jun-07 20:50 
AnswerRe: Dependancy between methods of a class Pin
Christian Graus3-Jun-07 21:03
protectorChristian Graus3-Jun-07 21:03 
GeneralRe: Dependancy between methods of a class Pin
KKrista3-Jun-07 21:11
KKrista3-Jun-07 21:11 
GeneralRe: Dependancy between methods of a class Pin
Expert Coming3-Jun-07 21:22
Expert Coming3-Jun-07 21:22 
AnswerRe: Dependancy between methods of a class Pin
Expert Coming3-Jun-07 21:08
Expert Coming3-Jun-07 21:08 
GeneralRe: Dependancy between methods of a class Pin
blackjack21503-Jun-07 21:29
blackjack21503-Jun-07 21:29 

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.