If anyone can help it would be appreciated.
I am working on an infopath form and attempting to make a form that
will change a set of questions based on a previous answer.
I need this to create all of the answer groups without having to
select click on the form.
This is a database driven form with anywere from 7 to 30 questions
that need to be answered.
Please help.
Joseph
Do you mean, that question should be populated dynamically once user
answered a question?
If yes, then handle the XML Events and populate the questions data
using web service.
Sample of registering XML Events in FormCode.cs::InternalStartup()
function
EventManager.XmlEvents["/my:FormData/my:Answer"].Changed += new
XmlChangedEventHandler(Answer_Changed);
Hth,
RP
joseph - 21 Jun 2007 21:19 GMT
Will try...
Thanks
Joseph
>Do you mean, that question should be populated dynamically once user
>answered a question?
[quoted text clipped - 10 lines]
>Hth,
>RP