index | search | no replies | posting guidelines | help | login | register |
Index » Products » ASP Report Wizard v2 |
| |||||||
Feb 19 2004, 4:22 PM |
| ||||||
whichman![]() ![]() ![]() from: Laurel, MD | There seems to be a problem running the ASP Report Wizard from an ASP.NET environment. This could possible be due to the ObjectContext. I am still looking into the problem. However, the graph works pretty fine. You can test it by trying the code below: private void btnGraph_Click(Object sender, System.EventArgs e) { try { AspWebSolution.SimpleGraph objGraph = new AspWebSolution.SimpleGraph(); objGraph.AddRow "10, 15, 20, 17, 5" (); objGraph.AddRow "12, 10, 17, 15, 10" (); objGraph.AddRow "5, 15, 10, 12, 7" (); objGraph.Legend = "Apples, Oranges, Lemons"; objGraph.Title = "Fruit Sales"; objGraph.yLabel = "Sales"; objGraph.xLabel = "Stores"; objGraph.XScaleValues = "NE, NW, SE, SW, CE"; objGraph.xALign = "center"; lblGraph.Text = objGraph.GetGraph(); objGraph = null; } catch (Exception ex) { OutputBox.Text = Ex .Message; } } Try this one to test the Grid private void testGrid() { try { AspWebSolution.DataGrid objGrid = new AspWebSolution.DataGrid(); objGrid.Command = "SELECT * FROM Products"; objGrid.CreateConnection( "nwind" ); objGrid.Display(); objGrid = null; } catch (Exception ex) { OutputBox.Text = Ex .Source + "<br>" + ex.Message; } } Remember to add a reference to the AspWebSolution DLL (AWSReportWizard2.dll) in your .NET project ------------------------- Master of the Game | ||||||
Pages: (1) [1] |