SharePoint EventSink

B

Bob Filipiak

I'm trying to write an EventSink for an InfoPath Form library on our portal
that will populate an events list when a Form is added to the library. the
form is a Facilities Request for scheduling classrooms and conference rooms.
When a request form is submitted to the portal, an event will be added to
the Event Calendar in a pending approval status.

I have an EventSink that writes information to the Application Event Log
when Forms are Inserted, Checked out, or Checked In to the library. I loop
through the fields on the form and write the field name and content to the
log. The problem I have is that not all of the fields are showing up in the
log. There are a number of boolean fields that do not get written. Here is
the loop:

For Each oField In oFields
sLog = sLog + "Field name = <" + oField.Title.ToString + "> " + vbCrLf +
vbTab + "Value = <" + oItem(oField.Title.ToString) + ">" + vbCrLf
Next

Any ideas?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top