ComboBox SelectedValue()

February 26, 2007 · Posted by Jeremy Thake
0 Comments· 0 Links to this post

<NoteToSelf> I had some issues with SelectedValue() on a WinForms ComboBox when adding values dynamically to it and used this:public class ComboValues{        private string _key;         private string _value;         public string Value        {            get { return _value; }            set { _value = value; }        }              public string Key        {    more...
Tags:

 

JoinView for DataTables

February 15, 2007 · Posted by Jeremy Thake
0 Comments· 0 Links to this post

We've been doing a lot of work with DataSets recently on this project and have had some issues on standards for creating new DataTables and TableAdapters. We have tried to enforce having DataTables with TableAdapters that directly reflect the base tables in a DataSet so that you can use the default Insert, Update, Delete, Select methods provided.Complex ProceduresOne problem occurs when you have more...
Tags:

 

Strongly Typed datasets command timeout

February 12, 2007 · Posted by Jeremy Thake
0 Comments· 0 Links to this post

I have been doing a lot of work recently with Strongly typed datasets and table adapters. We have found that the standard 40 seconds for some methods just wasn't enough...mainly due to big batch processes that call in large amounts of data in a view from various tables. I found a great article which has helped us out on this issue.It demonstrates how extensible the standard datasets are and I'm s more...
Tags: