B
Bernie Yaeger
I first load a small amount of data into a dataset with
da.fill(ds,"customers")
Later, I want to change that data based on user input:
Me.da.SelectCommand.CommandText = "select ptype, posstatus, shipdt, bipad,
issuecode, brname, imcacct, draw, preturn, rreturn, shortage, uprice, net,
efficiency from histd where custid = " & Chr(39) & mcustid & Chr(39)
How do I clear out the first datatable in the ds and replace it with this
new command? I don't want to create a second datatable, which I know how to
do.
Thanks for any help.
Bernie Yaeger
da.fill(ds,"customers")
Later, I want to change that data based on user input:
Me.da.SelectCommand.CommandText = "select ptype, posstatus, shipdt, bipad,
issuecode, brname, imcacct, draw, preturn, rreturn, shortage, uprice, net,
efficiency from histd where custid = " & Chr(39) & mcustid & Chr(39)
How do I clear out the first datatable in the ds and replace it with this
new command? I don't want to create a second datatable, which I know how to
do.
Thanks for any help.
Bernie Yaeger