Click here to Skip to main content
15,915,508 members
Home / Discussions / C#
   

C#

 
QuestionRs422 comm source code Pin
sanjay.gujjar5-Jan-10 19:24
sanjay.gujjar5-Jan-10 19:24 
AnswerRe: Rs422 comm source code Pin
SeMartens5-Jan-10 20:24
SeMartens5-Jan-10 20:24 
AnswerRe: Rs422 comm source code Pin
Roger Wright5-Jan-10 20:25
professionalRoger Wright5-Jan-10 20:25 
QuestionValidating a login to a mail server in C# Pin
Praveen Raghuvanshi5-Jan-10 17:42
professionalPraveen Raghuvanshi5-Jan-10 17:42 
QuestionStylecop Custom rule Pin
Reddy Prakash5-Jan-10 17:17
Reddy Prakash5-Jan-10 17:17 
QuestionHow to view a table using the Data Grid View Pin
Jeff Patterson5-Jan-10 17:07
Jeff Patterson5-Jan-10 17:07 
AnswerRe: How to view a table using the Data Grid View Pin
SeMartens5-Jan-10 20:29
SeMartens5-Jan-10 20:29 
GeneralRe: How to view a table using the Data Grid View Pin
Jeff Patterson6-Jan-10 17:15
Jeff Patterson6-Jan-10 17:15 
If I understand correctly,
below is the code from the frmMain.designer.cs file. I am a bit confused over this whole thing as to what does what and why. If you have a good reference resource that might help me I would appreciate it, so that I don't use too much of your time. I have Murach's C#2008 and SQL Server 2008 for Developers as well as a number of older MS Press books for C#. The MSPress books are all quite dated and a bit sparse for database information.

<pre>//
// tasksBindingSource
//
this.tasksBindingSource.DataMember = "Tasks";
this.tasksBindingSource.DataSource = this.timeSheetDataSet;

...
...
...

//
// tasksDataGridView
//
this.tasksDataGridView.AutoGenerateColumns = false;
this.tasksDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.tasksDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.dataGridViewTextBoxColumn1,
this.dataGridViewTextBoxColumn2,
this.dataGridViewTextBoxColumn3});
this.tasksDataGridView.DataSource = this.tasksBindingSource;
this.tasksDataGridView.Location = new System.Drawing.Point(36, 195);
this.tasksDataGridView.Name = "tasksDataGridView";
...
...</pre>

Thanks for the time and the help.

Jeff
GeneralRe: How to view a table using the Data Grid View Pin
SeMartens6-Jan-10 20:10
SeMartens6-Jan-10 20:10 
AnswerRe: How to view a table using the Data Grid View Pin
carlecomm6-Jan-10 15:51
carlecomm6-Jan-10 15:51 
GeneralRe: How to view a table using the Data Grid View Pin
Jeff Patterson6-Jan-10 17:05
Jeff Patterson6-Jan-10 17:05 
QuestionList open Excel files Pin
Akash Patki5-Jan-10 16:35
Akash Patki5-Jan-10 16:35 
AnswerRe: List open Excel files Pin
dojohansen7-Jan-10 6:08
dojohansen7-Jan-10 6:08 
GeneralRe: List open Excel files Pin
Akash Patki7-Jan-10 7:11
Akash Patki7-Jan-10 7:11 
Questioncrystal Reports problem? Pin
miss YY5-Jan-10 14:47
miss YY5-Jan-10 14:47 
AnswerRe: crystal Reports problem? Pin
Garth J Lancaster5-Jan-10 16:00
professionalGarth J Lancaster5-Jan-10 16:00 
Questiongetting country location based on IP address [modified] Pin
uglyeyes5-Jan-10 14:30
uglyeyes5-Jan-10 14:30 
AnswerRe: getting country location based on IP address Pin
Garth J Lancaster5-Jan-10 15:51
professionalGarth J Lancaster5-Jan-10 15:51 
GeneralRe: getting country location based on IP address Pin
uglyeyes5-Jan-10 18:05
uglyeyes5-Jan-10 18:05 
GeneralRe: getting country location based on IP address Pin
Garth J Lancaster5-Jan-10 18:09
professionalGarth J Lancaster5-Jan-10 18:09 
GeneralRe: getting country location based on IP address Pin
Garth J Lancaster5-Jan-10 18:16
professionalGarth J Lancaster5-Jan-10 18:16 
GeneralRe: getting country location based on IP address Pin
uglyeyes6-Jan-10 9:07
uglyeyes6-Jan-10 9:07 
GeneralRe: getting country location based on IP address Pin
uglyeyes6-Jan-10 10:57
uglyeyes6-Jan-10 10:57 
GeneralRe: getting country location based on IP address Pin
uglyeyes12-Jan-10 15:41
uglyeyes12-Jan-10 15:41 
AnswerRe: getting country location based on IP address Pin
Ravi Sant14-Apr-11 1:50
Ravi Sant14-Apr-11 1:50 

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.