c#.net Web Forms questions

Associate
Joined
17 Mar 2008
Posts
135
Howdo,

Just looking into developing an application as a windows form so any references, or points of call would be welcomed.

Having trouble with adding new details to a grid view (sql), also have problems with the autonumber, it updates the column but with a -1 instead of 1000 (as set via the table in sql).

Also any easy ways of exporting a gridview to excel, I've done it before but not through 'window forms' so a little stuck.

And whats the best practice from a navigation point of view to open new forms, so far i'm using on a click event:

Code:
Form f = new contactList();
            f.MdiParent = this;
            f.Show();
 
Back
Top Bottom