Posted By
Kevin S
Dec 30, 2025 09:19:00 AM
Found In
Egroup:
Advanced Software
\
view thread
I run a INSERT when a part is started to set the initial values in my production database. string[] OrderHistoryColumns= ( "StartTime", "FinishTime", "PartNumber", "QuantityOrdered", "QuantityComplete", "OrderID" ); var data = new object[1, 6]; DateTime startTime = DateTime.Now; data[0, 0] = startTime; ...
|