K
Kevin
I have a Windows Forms app with a form that displays/updates student data. When it activates I fill a DataTable with just the names of the students
from a table of about 10,000 names. I have Previous/Next buttons to scroll through students on the form. I fill another DataTable from a SELECT
statement and load the screen with the results. The user can change any of the data and press the SAVE button.
I need to keep a log file of the changes made. And when the record is changed in the database, I refresh the first DataTable with just the names in
case they added someone new (or another user does).
This program is going to be run over a VPN connection to our network and SQL Server 2005 running on our server. I need to know the fastest way to
save/update records across the internet.
from a table of about 10,000 names. I have Previous/Next buttons to scroll through students on the form. I fill another DataTable from a SELECT
statement and load the screen with the results. The user can change any of the data and press the SAVE button.
I need to keep a log file of the changes made. And when the record is changed in the database, I refresh the first DataTable with just the names in
case they added someone new (or another user does).
This program is going to be run over a VPN connection to our network and SQL Server 2005 running on our server. I need to know the fastest way to
save/update records across the internet.