Advertisement
Advertisement
| 12.18.2007 at 01:33AM PST, ID: 23030160 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: |
FilterJobRS.AddNew(Missing.Value, Missing.Value); FilterJobRS.Fields["JobID"].Value = ""; FilterJobRS.Fields["JobName"].Value = ""; FilterJobRS.Fields["UserName"].Value ="JonDoe"; FilterJobRS.Fields["Queue"].Value = ""; FilterJobRS.Fields["Host"].Value = ""; FilterJobRS.Fields["Options"].Value = 4;//iStatus; FilterJobRS.Update(Missing.Value, Missing.Value); it seems to be failing at the lines FilterJobRS.Fields["JobID"].Value = ""; FilterJobRS.Fields["JobName"].Value = ""; FilterJobRS.Fields["UserName"].Value ="JonDoe" FilterJobRS.Fields["Queue"].Value = ""; FilterJobRS.Fields["Host"].Value = ""; FilterJobRS.Fields["Options"].Value = 4;//iStatus; Could anyone advice? Unfortunately i have to use recordset in C# as i don't have access to the other component that uses this recordset. |