I've gotten the SP object model to update a specific row in a SP list. I want to
be able to update the row that activated the workflow. Here is the way I am
updating now, and it updates the 6th item in the list. I know why it updated
that row, just want it to update the correct row!
SPList selectedList = web.Lists["listName"];
SPListItem oListItem = selectedList.Items[5];
oListItem["fieldName"] = 25;
oListItem.Update();