kcwallace Posted October 10, 2006 Posted October 10, 2006 My superiors have decided that they want all code converted to C#. I have figured 99% of it out, but I am stuck on the line below. Can anyone help? ds.Tables(0).Rows(lineCnt).Item(64) = sOD1 I tried ds.Tables[0].Rows[lineCnt].Item[64] = sOD1; and it returns this error 'System.Data.DataRow' does not contain a definition for 'item' "ds" is a dataset Quote Go Beavs!!!
Administrators PlausiblyDamp Posted October 10, 2006 Administrators Posted October 10, 2006 Try ds.Tables[0].Rows[lineCnt][64] = sOD1; Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
kcwallace Posted October 10, 2006 Author Posted October 10, 2006 thank you for your help Quote Go Beavs!!!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.