Problem adding DataTable to existing DataSet
From: charliewest (charliewest_at_discussions.microsoft.com)
Date: 03/12/05
- Next message: Xarky: "Saving files locally downloaded from the net"
- Previous message: Tim Wilson: "Re: Problem setting "SelectedValue" in ComboBox using .Net CF"
- Messages sorted by: [ date ] [ thread ]
Date: Sat, 12 Mar 2005 08:39:02 -0800
Using .Net CF, I have a DataSet which includes four tables. Periodically, i
must refresh one table w/ new data from the Sql CE database. I go about this
as follows:
ds.Tables.RemoveAt(3);
DataTable dt = utilities.fGetResponses(<< sent params to create table>>);
ds.Tables.Add(dt);
I get the following error:
A first chance exception of type 'System.IO.FileNotFoundException' occurred
in mscorlib.dll. Additional information: FileNotFoundException
Any ideas why this doesn't work?
Thanks,
- Next message: Xarky: "Saving files locally downloaded from the net"
- Previous message: Tim Wilson: "Re: Problem setting "SelectedValue" in ComboBox using .Net CF"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|