Click here to Skip to main content
15,900,325 members
Home / Discussions / C#
   

C#

 
GeneralRe: component for datagridview Pin
SajjadZare6-Jan-10 5:38
SajjadZare6-Jan-10 5:38 
GeneralRe: component for datagridview Pin
dan!sh 6-Jan-10 5:46
professional dan!sh 6-Jan-10 5:46 
QuestionHow do I access row and cell information in a bound DataGridView? Pin
arnold_w6-Jan-10 5:11
arnold_w6-Jan-10 5:11 
AnswerRe: How do I access row and cell information in a bound DataGridView? Pin
dan!sh 6-Jan-10 5:45
professional dan!sh 6-Jan-10 5:45 
GeneralRe: How do I access row and cell information in a bound DataGridView? Pin
arnold_w6-Jan-10 21:27
arnold_w6-Jan-10 21:27 
GeneralRe: How do I access row and cell information in a bound DataGridView? Pin
dan!sh 7-Jan-10 4:05
professional dan!sh 7-Jan-10 4:05 
GeneralRe: How do I access row and cell information in a bound DataGridView? Pin
arnold_w7-Jan-10 4:24
arnold_w7-Jan-10 4:24 
GeneralRe: How do I access row and cell information in a bound DataGridView? Pin
arnold_w7-Jan-10 4:30
arnold_w7-Jan-10 4:30 
d@nish wrote:
1. Get rid of binding source and use this:

DataGridView dataGridView2 = new DataGridView();
DataTable dataTable = new DataTable();
dataTable.Columns.Add("My Column");
dataTable.Rows.Add("My Cell Value");
dataGridView2.DataSource = dataTable;


Ooops, I just discovered that if I don't use BindingSource, I can't use the BindingSource.Filter method. The reason I want a bound form is that I need filter-functionality. Is there a workaround for this?
GeneralRe: How do I access row and cell information in a bound DataGridView? Pin
dan!sh 7-Jan-10 6:27
professional dan!sh 7-Jan-10 6:27 
GeneralRe: How do I access row and cell information in a bound DataGridView? Pin
arnold_w7-Jan-10 22:05
arnold_w7-Jan-10 22:05 
QuestionSingleton Class and Static Class Pin
dataminers6-Jan-10 4:01
dataminers6-Jan-10 4:01 
AnswerRe: Singleton Class and Static Class Pin
#realJSOP6-Jan-10 4:07
professional#realJSOP6-Jan-10 4:07 
AnswerRe: Singleton Class and Static Class Pin
harold aptroot6-Jan-10 4:07
harold aptroot6-Jan-10 4:07 
AnswerRe: Singleton Class and Static Class Pin
Abhinav S6-Jan-10 5:52
Abhinav S6-Jan-10 5:52 
AnswerRe: Singleton Class and Static Class Pin
carlecomm6-Jan-10 19:13
carlecomm6-Jan-10 19:13 
QuestionGenerating partitions Pin
varsha parmar6-Jan-10 3:39
varsha parmar6-Jan-10 3:39 
AnswerRe: Generating partitions Pin
Luc Pattyn6-Jan-10 3:46
sitebuilderLuc Pattyn6-Jan-10 3:46 
GeneralRe: Generating partitions Pin
varsha parmar6-Jan-10 3:56
varsha parmar6-Jan-10 3:56 
GeneralRe: Generating partitions Pin
#realJSOP6-Jan-10 4:00
professional#realJSOP6-Jan-10 4:00 
GeneralRe: Generating partitions Pin
Luc Pattyn6-Jan-10 4:05
sitebuilderLuc Pattyn6-Jan-10 4:05 
GeneralRe: Generating partitions Pin
OriginalGriff6-Jan-10 5:43
mveOriginalGriff6-Jan-10 5:43 
GeneralRe: Generating partitions Pin
Luc Pattyn6-Jan-10 5:52
sitebuilderLuc Pattyn6-Jan-10 5:52 
GeneralRe: Generating partitions Pin
OriginalGriff6-Jan-10 6:05
mveOriginalGriff6-Jan-10 6:05 
GeneralRe: Generating partitions Pin
ωαη∂εrεr6-Jan-10 19:56
ωαη∂εrεr6-Jan-10 19:56 
QuestionStatic constructor [SOLVED] Pin
mabrahao6-Jan-10 0:42
mabrahao6-Jan-10 0:42 

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.