K
Kirk
Hello,
I have an app that reads & writes to XML files. I now would like to
create some reports using Crystal Reports, and the usual way I do this
is by creating a dataset in Visual Studio & inserting the fields
graphically. However, I cannot find out how to do this within the VS
IDE. I can create the dataset programatically like this:
Dim filePath As String = "C:\Temp\XMLfile.xml"
AuthorsDataSet.ReadXml(filePath)
DataGridView1.DataSource = AuthorsDataSet
DataGridView1.DataMember = "authors"
....but this created at runtime, and as such, I cannot use it at
design-time for my CR design work.
How can I create a dataset from an XML file at design time?
Thanx in advance.
I have an app that reads & writes to XML files. I now would like to
create some reports using Crystal Reports, and the usual way I do this
is by creating a dataset in Visual Studio & inserting the fields
graphically. However, I cannot find out how to do this within the VS
IDE. I can create the dataset programatically like this:
Dim filePath As String = "C:\Temp\XMLfile.xml"
AuthorsDataSet.ReadXml(filePath)
DataGridView1.DataSource = AuthorsDataSet
DataGridView1.DataMember = "authors"
....but this created at runtime, and as such, I cannot use it at
design-time for my CR design work.
How can I create a dataset from an XML file at design time?
Thanx in advance.