Click here to Skip to main content
15,894,180 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to build a dual-action scroll bar ? Pin
Gamya2-Mar-05 20:01
sussGamya2-Mar-05 20:01 
GeneralRe: How to build a dual-action scroll bar ? Pin
paisanousa3-Mar-05 10:25
paisanousa3-Mar-05 10:25 
GeneralRe: How to build a dual-action scroll bar ? Pin
3-Mar-05 18:39
suss3-Mar-05 18:39 
GeneralRe: How to build a dual-action scroll bar ? Pin
paisanousa4-Mar-05 12:19
paisanousa4-Mar-05 12:19 
AnswerRe: How to build a dual-action scroll bar ? Pin
Gamya3-Mar-05 19:01
sussGamya3-Mar-05 19:01 
GeneralDuring app start, button is repeatedly clicked Pin
porterrific2-Mar-05 13:05
porterrific2-Mar-05 13:05 
GeneralRe: During app start, button is repeatedly clicked Pin
sreejith ss nair2-Mar-05 18:19
sreejith ss nair2-Mar-05 18:19 
GeneralRe: During app start, button is repeatedly clicked Pin
porterrific3-Mar-05 3:44
porterrific3-Mar-05 3:44 
Thanks for the feedback. As usual, providing details will help the analysis.

Yes, I have placed all the databinding after Initialization(). The 'load-filtered-data' button has only one statement: a call to a dataview filter routine. In this routine I build a filter statement, using the selected list item:

private void Filter(string comboString)
{
string filterString;
filterString = "EngrName='" + comboString + "'";

DataView myDataView = new DataView(workordersDataset1.Tables["WorkOrders"]);
myDataView.RowFilter = filterString;
this.dataGrid1.DataSource = myDataView;
this.dataGrid1.Refresh();
}

If I remove the call to this function and re-compile, my datagrid loads with all records -- exactly what I want. If I leave in the function call, the datagrid is blank, and the button_click &/or the filter function do not fire. I haven't built any error handling yet, and I'm sure that would help me to troubleshoot.

Thanks very much.
Generaladd,delete,update,serch option ? want code Pin
chandtec2-Mar-05 12:32
chandtec2-Mar-05 12:32 
GeneralRe: add,delete,update,serch option ? want code Pin
Yulianto.2-Mar-05 13:29
Yulianto.2-Mar-05 13:29 
GeneralAccessing Arraylist Collection Pin
MrJJKoolJ2-Mar-05 10:00
MrJJKoolJ2-Mar-05 10:00 
GeneralRe: Accessing Arraylist Collection Pin
TylerBrinks2-Mar-05 10:16
TylerBrinks2-Mar-05 10:16 
Generali dev a proj in c#.net . how to Setup project Pin
chandtec2-Mar-05 9:56
chandtec2-Mar-05 9:56 
GeneralRe: i dev a proj in c#.net . how to Setup project Pin
TylerBrinks2-Mar-05 10:25
TylerBrinks2-Mar-05 10:25 
GeneralConnection Not Closing File.Move Pin
kornstyle2-Mar-05 9:47
kornstyle2-Mar-05 9:47 
GeneralRe: Connection Not Closing File.Move Pin
Peter Vertes2-Mar-05 18:28
Peter Vertes2-Mar-05 18:28 
GeneralRe: Connection Not Closing File.Move Pin
Dave Kreskowiak3-Mar-05 0:49
mveDave Kreskowiak3-Mar-05 0:49 
QuestionData Adapter Column Limits? Pin
Mark T Garcia2-Mar-05 8:00
Mark T Garcia2-Mar-05 8:00 
AnswerRe: Data Adapter Column Limits? Pin
TylerBrinks2-Mar-05 10:37
TylerBrinks2-Mar-05 10:37 
GeneralRe: Data Adapter Column Limits? Pin
Mark T Garcia2-Mar-05 13:21
Mark T Garcia2-Mar-05 13:21 
GeneralRe: Data Adapter Column Limits? Pin
TylerBrinks3-Mar-05 3:56
TylerBrinks3-Mar-05 3:56 
QuestionHow to change text of buttons on MessageBox Pin
oohungoo2-Mar-05 7:39
oohungoo2-Mar-05 7:39 
AnswerRe: How to change text of buttons on MessageBox Pin
Christian Graus2-Mar-05 11:16
protectorChristian Graus2-Mar-05 11:16 
AnswerRe: How to change text of buttons on MessageBox Pin
Yulianto.2-Mar-05 13:32
Yulianto.2-Mar-05 13:32 
Generalpl some one correct the error i got Pin
chandtec2-Mar-05 6:05
chandtec2-Mar-05 6:05 

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.