Click here to Skip to main content
15,914,924 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: database library Pin
Giorgi Dalakishvili7-Nov-08 3:05
mentorGiorgi Dalakishvili7-Nov-08 3:05 
GeneralRe: database library Pin
Pete O'Hanlon7-Nov-08 3:20
mvePete O'Hanlon7-Nov-08 3:20 
GeneralRe: database library Pin
Jon_Boy11-Nov-08 3:31
Jon_Boy11-Nov-08 3:31 
QuestionRunning command in command prompt from .NET Pin
sailesh_gupta6-Nov-08 2:59
sailesh_gupta6-Nov-08 2:59 
GeneralRe: Running command in command prompt from .NET Pin
Luc Pattyn6-Nov-08 3:04
sitebuilderLuc Pattyn6-Nov-08 3:04 
AnswerRe: Running command in command prompt from .NET Pin
dan!sh 6-Nov-08 15:45
professional dan!sh 6-Nov-08 15:45 
AnswerCP IGNORE: cross poster! Pin
leckey6-Nov-08 16:02
leckey6-Nov-08 16:02 
QuestionDataGridView filter Pin
kensai6-Nov-08 2:00
kensai6-Nov-08 2:00 
I have a DataGridView bound to a table in Sql Server CE. I'd like to filter results but I couldn't figure it out so far. I'm trying to use DataView RowFilter but I couldn't manage it to work. Could you please tell me what should I look for? Here's the code, auto-generated by VS.NET, to bind data:

this.gridRecords.DataSource = this.RecordsBindingSource;
this.RecordsBindingSource.DataMember = "Records"; //table name is Records
this.RecordsBindingSource.DataSource = this.tempRecordsDataSetBindingSource;
this.tempRecordsDataSetBindingSource.DataSource = this.tempRecordsDataSet;
this.tempRecordsDataSetBindingSource.Position = 0;
this.tempRecordsDataSet.DataSetName = "TempRecordsDataSet";
this.tempRecordsDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
this.RecordsTableAdapter.ClearBeforeFill = true;
this.RecordsTableAdapter.Fill(this.tempRecordsDataSet.Records);


This is what I tried:

this.tempRecordsDataSet.Records.DefaultView.RowFilter = "Field = 1234567891";

AnswerRe: DataGridView filter Pin
Wendelius6-Nov-08 8:51
mentorWendelius6-Nov-08 8:51 
QuestionHow to create crystal report using generic list Pin
ShaikhShahnawaz5-Nov-08 23:44
ShaikhShahnawaz5-Nov-08 23:44 
QuestionMicrosoftReportViewer Pin
hmklakmal4-Nov-08 1:23
hmklakmal4-Nov-08 1:23 
AnswerRe: MicrosoftReportViewer Pin
Wendelius4-Nov-08 6:16
mentorWendelius4-Nov-08 6:16 
GeneralRe: MicrosoftReportViewer Pin
hmklakmal4-Nov-08 14:52
hmklakmal4-Nov-08 14:52 
QuestionThings related with Unmanaged code [modified] Pin
Member 45546493-Nov-08 19:25
Member 45546493-Nov-08 19:25 
AnswerRe: Things related with Unmanaged code Pin
Dave Kreskowiak4-Nov-08 3:56
mveDave Kreskowiak4-Nov-08 3:56 
GeneralRe: Things related with Unmanaged code Pin
Member 45546494-Nov-08 18:53
Member 45546494-Nov-08 18:53 
GeneralRe: Things related with Unmanaged code Pin
Simon P Stevens4-Nov-08 23:23
Simon P Stevens4-Nov-08 23:23 
QuestionVSTO application deployment Pin
tozy3-Nov-08 19:16
tozy3-Nov-08 19:16 
AnswerStop cross posting Pin
Simon P Stevens4-Nov-08 2:04
Simon P Stevens4-Nov-08 2:04 
Question.Net API GetMembers(BindingFlags) returns some additional members. Pin
Manish Paul3-Nov-08 5:58
Manish Paul3-Nov-08 5:58 
AnswerRe: .Net API GetMembers(BindingFlags) returns some additional members. Pin
Mark Churchill3-Nov-08 14:09
Mark Churchill3-Nov-08 14:09 
QuestionHow do I suppress the SelectAll when tabbing into a ComboBox? Pin
Poolee2-Nov-08 18:51
Poolee2-Nov-08 18:51 
AnswerRe: How do I suppress the SelectAll when tabbing into a ComboBox? Pin
Wendelius3-Nov-08 9:09
mentorWendelius3-Nov-08 9:09 
GeneralRe: How do I suppress the SelectAll when tabbing into a ComboBox? Pin
Poolee3-Nov-08 13:06
Poolee3-Nov-08 13:06 
GeneralRe: How do I suppress the SelectAll when tabbing into a ComboBox? Pin
Wendelius3-Nov-08 17:53
mentorWendelius3-Nov-08 17:53 

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.