hello all
i saw one article that bind crystl report using Dataset.xsd file with Query in c#
http://www.aspsnippets.com/Articles/Getting-started-with-Crystal-Reports-for-Visual-Studio-2010-2012-and-2013.aspx
everthing is fine .it bind one datatabel from codebehind and afterthat bind dataset file with crystal report .
i want to bind one other datatable (Datattable2) for showing Comapny Details in Crystal report on header .and there is no rany relationship btw Customer and Comapny table both are indepdant
my Stored Procedure is
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
alter PROCEDURE Customers_GetCustomers
AS
BEGIN
SET NOCOUNT ON;
Select * from tbl_ComapnyInfo
SELECT CustomerID,ContactName ,City ,Country FROM Customers
END
GO
i want bind one Table value in Datatabel one and Second Table value in Datatable2 and bind Crystal report
please help me .its very urgent .
thanks