Thanks GuysThe reason I am asking is because I am using ULTRACHART and have the following code to pull back data from 2 tables. Can this be performed with the BBS? Do you have an example. I would like to clean up the form and talk to the BOs directely.
Thanks
Michael
****Chart Sample Code****
Dim ds As New SqlConnection(MicroFour.StrataFrame.Data.DataLayer.DataSources.Item(0).ConnectionString.ToString)
Dim
Command2 As SqlCommand = New SqlCommand("SELECT B.SiteName,COUNT(B.ID) AS Sites FROM Subjects A INNER JOIN Sites AS B ON A.SiteID = B.ID GROUP BY B.SiteName", ds)Dim
MainDataAdapterDA2 As New SqlDataAdapterMainDataAdapterDA2.SelectCommand = Command2
Dim
MainDataTable2 As New DataTableMainDataAdapterDA2.Fill(MainDataTable2)
Dim
MainSeries2 As New NumericSeries()'Databind = Datatable,ValueColumn as String and Label Column as String)
MainSeries2.DataBind(MainDataTable2,
"Sites", "SiteName")