Guys,
I figured something out which works so far, although I'm certainly not experienced enough in the realm of C# to know if what I've created is actually accurate and almost as importantly, efficient. Here is what I did:
string sDate = (Thread.Current Thread.CurrentC ulture.DateTime Format.ShortDat ePattern.ToStri ng());
foreach (DataRow drItemPlan in dsItemDemand.Ta bles[0].Rows)
{
string...
User Profile
Collapse
-
The application has a back end handled by a Progress database. The current dataset gets built as a user builds an Infragistics grid of data records.
What I need to do is update the value of the date field in the dataset so that it doesn't blow up the back end code - which it does now.
I am beginning to wonder if it isn't possible to update a dataset that already contains data and whether I should maybe base this entire...Leave a comment:
-
Updating Dataset Column Value ...
Guys,
I am looping thru a dataset and need to update rows' columns based on the ColumnName value. I get this far but I'm unsure of how to update that actual columns value with the new value. Code follows:
string sDate = (Thread.Current Thread.CurrentC ulture.DateTime Format.ShortDat ePattern.ToStri ng());
string BritishDate;
string USDate;
if (sDate != "MM/dd/yyyy")...
No activity results to display
Show More
Leave a comment: