everything-dot-net.blogspot.com
Everything Dot Net: More on DataPropertyName
http://everything-dot-net.blogspot.com/2006/07/more-on-datapropertyname.html
A Blog dedicated to anything and everything related to Microsoft.Net. Saturday, July 15, 2006. If a DataGridViewColumn has a null DataPropertyName the columns index will be set to 0. (if there is more than 1 column like this, then 0,1,2, etc.) - this of course messes up the indexes of your other columns too. Subscribe to: Post Comments (Atom). And follow the directions at the top pf the page. View my complete profile. To Change current cell in DataGridView. Highlight entire row in DataGridView.
everything-dot-net.blogspot.com
Everything Dot Net: To Change current cell in DataGridView..
http://everything-dot-net.blogspot.com/2006/07/to-change-current-cell-in-datagridview.html
A Blog dedicated to anything and everything related to Microsoft.Net. Sunday, July 09, 2006. To Change current cell in DataGridView. ThismyDGV.CurrentCell = this.myDGV.Rows[0].Cells[1];. This will automatically highlight the row as well - at least if you have MultiSelect set to false and SelectionMode to FullRowSelect. Subscribe to: Post Comments (Atom). And follow the directions at the top pf the page. View my complete profile. To Change current cell in DataGridView. Highlight entire row in DataGridView.
everything-dot-net.blogspot.com
Everything Dot Net: DataGridViewButtonColumn
http://everything-dot-net.blogspot.com/2006/07/datagridviewbuttoncolumn.html
A Blog dedicated to anything and everything related to Microsoft.Net. Saturday, July 08, 2006. I've just started experimenting with the new DataGridView control in 2.0. I've learned a couple interesting things so far while trying to create some button columns. First, in order to display text on the DataGridViewButtonColumn you must not only set the Text property, but must also set the UseColumnTextForButtonValue to true. Maybe you can help me out with what's going on? Maybe I can help you out w/something?
everything-dot-net.blogspot.com
Everything Dot Net: Getting parent
http://everything-dot-net.blogspot.com/2006/08/getting-parent.html
A Blog dedicated to anything and everything related to Microsoft.Net. Friday, August 18, 2006. I have a control embedded in another nested control. I need to get a parent several levels up (but not all the way up), basically I need to do a recursive search up the parents until I hit a parent that is one of two types - then I want to know which of the two types it was. Subscribe to: Post Comments (Atom). And follow the directions at the top pf the page. View my complete profile. Eric Sink - SourceGear.
everything-dot-net.blogspot.com
Everything Dot Net: Highlight entire row in DataGridView
http://everything-dot-net.blogspot.com/2006/07/highlight-entire-row-in-datagridview.html
A Blog dedicated to anything and everything related to Microsoft.Net. Saturday, July 08, 2006. Highlight entire row in DataGridView. To highlight an entire row in the DataGridView, set the SelectionMode property to FullRowSelect. Subscribe to: Post Comments (Atom). CreaTek Solutions, Inc. is an IT consulting and recruiting company, based in Denver, CO. To apply for any of these positions, please go to www.createksolutions.com/careers.html. And follow the directions at the top pf the page.
everything-dot-net.blogspot.com
Everything Dot Net: Error connecting to database
http://everything-dot-net.blogspot.com/2006/08/error-connecting-to-database.html
A Blog dedicated to anything and everything related to Microsoft.Net. Tuesday, August 01, 2006. Error connecting to database. Are you getting this error? Sqlcmd: Error: Microsoft SQL Native Client: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. The default solution is here:. Http:/ support.microsoft.com/? View my complete profile.
everything-dot-net.blogspot.com
Everything Dot Net: DataGridViewButtonColumn click event
http://everything-dot-net.blogspot.com/2006/07/datagridviewbuttoncolumn-click-event.html
A Blog dedicated to anything and everything related to Microsoft.Net. Saturday, July 15, 2006. I just realized that you capture the click event for the DataGridViewButtonColumn the same way you do any other column - through the DataGridView's CellClick event - The button column does not have it's own click event! Thanks a lot, just what i was wondering :). Subscribe to: Post Comments (Atom). And follow the directions at the top pf the page. View my complete profile. To Change current cell in DataGridView.
everything-dot-net.blogspot.com
Everything Dot Net: DataPropertyName
http://everything-dot-net.blogspot.com/2006/07/datapropertyname.html
A Blog dedicated to anything and everything related to Microsoft.Net. Saturday, July 15, 2006. Looking back over my old posts it seems that for the DataGridViewImageColumn, setting the DataPropertyName to the same name as the corresponding column in the DataTable causing a problem, but with the DataGridViewTextBoxColumn, you must set the DataPropertyName to the name of the corresponding DataColumn. Hmm. Subscribe to: Post Comments (Atom). And follow the directions at the top pf the page.
everything-dot-net.blogspot.com
Everything Dot Net: .Net Cloning
http://everything-dot-net.blogspot.com/2006/07/net-cloning.html
A Blog dedicated to anything and everything related to Microsoft.Net. Monday, July 17, 2006. Two interesting articles on cloning:. Http:/ www.codeproject.com/csharp/cloneimpl class.asp? Http:/ www.agiledeveloper.com/articles/cloning072002.htm. You can add customizations but then the function is not generic and you lose the main advantage. Serialization is another option, but this gives a security issue - also may be a performance issue? Subscribe to: Post Comments (Atom). View my complete profile.