MrsMope987
Programmer
- Sep 27, 2007
- 23
Hello,
I am a complete novice at Crystal Reports this is my first attempt. I have created a VB.NET application that creates a XML Datasource in the following format:
and I want the report to look like an order form with each of the fields from the form filled in appropriately with the values, but I can't figure out how to do it.
If I were going to do this from SQL it would be
What is the correct syntax for that statement in Crystal?
Thanks,
I am a complete novice at Crystal Reports this is my first attempt. I have created a VB.NET application that creates a XML Datasource in the following format:
Code:
<OrderInfo>
<TabIndex>0</TabIndex>
<FieldName>GroupBox9</FieldName>
<FieldValue>New Order</FieldValue>
</OrderInfo>
If I were going to do this from SQL it would be
Code:
SELECT FieldValue FROM OrderInfo WHERE FieldName = 'GroupBox9'
What is the correct syntax for that statement in Crystal?
Thanks,