Q1: Is the order of objects
declared in XML file important?
Ans: Although it does not make
your form GUI different, it effect to tab order of components on
your form. The object component which is declared first in XML file
will have tabIndex = 0. It will increate with other next components.
The last 2 button: send and reset will get last tab orders.
Q2: Can I access other
properties of components in my form?
Ans: Yes, you can do by using
getObject method of MSMF component. See
Advance using for more detail.
Q3: Can I get value of other
components in my form on PHP Server script?
Ans: Yes. Because some component
values are POSTed to PHP script, you can use it for other purposes.
See Advance using for more details.