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?
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?