Differences between revisions 2 and 3
Revision 2 as of 2008-11-29 03:06:01
Size: 197
Editor: 209-142-131-35
Comment:
Revision 3 as of 2009-03-04 21:54:03
Size: 1187
Editor: 24-183-238-75
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:
== Dr. A == = Dr. A =
More info about Dr. "A" and his Wife Dr. Anderson can be found at http://www.scotnpatti.com.
Line 6: Line 7:
More info about Dr. "A" and his Wife Dr. Anderson can be found at http://www.scotnpatti.com. = Current Projects =
== Bible Beliefs Database Project ==
 1. Add the connection to the Data Connections in Server Explorer
 1. Add a data set item to the project. This is a nice gui place to create the data set. Drag and drop the tables on the page and you will build yourself a nice database diagram similar to what you would do in Visio.
 1. Next I added a DataGridView Object, bound it to the TopicTextViewOrdered and changed the column type to DataGridViewLinkColumn.
  1. Note the contextMenuStrip should be where we click to add a new belief possibly
  1. Turned TrackVisitedState to false.
 1. Double Clicked on DGV object to create a CellContentClick event handler. To start with I'll just do a MessageBox as shown in Table I Below
 1.

if (Utilities.IsANonHeaderLinkCell((DataGridView)sender, e))
            {
                string cellValue = (string)dgvTopics.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
                MessageBox.Show(cellValue);
            }
Line 9: Line 24:

Dr. A

More info about Dr. "A" and his Wife Dr. Anderson can be found at http://www.scotnpatti.com.

Current Projects

Bible Beliefs Database Project

  1. Add the connection to the Data Connections in Server Explorer
  2. Add a data set item to the project. This is a nice gui place to create the data set. Drag and drop the tables on the page and you will build yourself a nice database diagram similar to what you would do in Visio.
  3. Next I added a DataGridView Object, bound it to the TopicTextViewOrdered and changed the column type to DataGridViewLinkColumn.

    1. Note the contextMenuStrip should be where we click to add a new belief possibly
    2. Turned TrackVisitedState to false.

  4. Double Clicked on DGV object to create a CellContentClick event handler. To start with I'll just do a MessageBox as shown in Table I Below

if (Utilities.IsANonHeaderLinkCell((DataGridView)sender, e))


CategoryHomepage

scot (last edited 2021-02-25 00:01:31 by scot)