Click here to Skip to main content
15,904,416 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to use Dictionary? Pin
mav.northwind21-Jul-07 23:13
mav.northwind21-Jul-07 23:13 
GeneralRe: How to use Dictionary? Pin
Nothend21-Jul-07 23:21
Nothend21-Jul-07 23:21 
GeneralRe: How to use Dictionary? Pin
Larantz22-Jul-07 0:11
Larantz22-Jul-07 0:11 
GeneralRe: How to use Dictionary? Pin
Nothend22-Jul-07 0:21
Nothend22-Jul-07 0:21 
GeneralRe: How to use Dictionary? Pin
Nothend22-Jul-07 0:24
Nothend22-Jul-07 0:24 
QuestionPersistentn publish-subscribe in wcf Pin
xshift21-Jul-07 22:10
xshift21-Jul-07 22:10 
QuestionGlobal Assembly Cache Pin
George_George21-Jul-07 20:12
George_George21-Jul-07 20:12 
AnswerRe: Global Assembly Cache Pin
mav.northwind21-Jul-07 21:24
mav.northwind21-Jul-07 21:24 
GeneralRe: Global Assembly Cache Pin
George_George21-Jul-07 22:04
George_George21-Jul-07 22:04 
GeneralRe: Global Assembly Cache Pin
mav.northwind21-Jul-07 23:10
mav.northwind21-Jul-07 23:10 
GeneralRe: Global Assembly Cache Pin
George_George22-Jul-07 0:25
George_George22-Jul-07 0:25 
GeneralRe: Global Assembly Cache Pin
mav.northwind22-Jul-07 4:09
mav.northwind22-Jul-07 4:09 
GeneralRe: Global Assembly Cache Pin
George_George23-Jul-07 3:31
George_George23-Jul-07 3:31 
QuestionFinally! Pin
max2929721-Jul-07 17:55
max2929721-Jul-07 17:55 
AnswerRe: Finally! Pin
Paul Conrad21-Jul-07 18:38
professionalPaul Conrad21-Jul-07 18:38 
GeneralRe: Finally! Pin
max2929721-Jul-07 19:56
max2929721-Jul-07 19:56 
AnswerRe: Finally! Pin
mav.northwind21-Jul-07 21:25
mav.northwind21-Jul-07 21:25 
GeneralRe: Finally! Pin
max2929722-Jul-07 10:16
max2929722-Jul-07 10:16 
GeneralRe: Finally! Pin
mav.northwind22-Jul-07 19:01
mav.northwind22-Jul-07 19:01 
AnswerRe: Finally! Pin
Luc Pattyn22-Jul-07 1:00
sitebuilderLuc Pattyn22-Jul-07 1:00 
QuestionPlease i want help in crystal report with c# Pin
MYOSRI21-Jul-07 10:34
MYOSRI21-Jul-07 10:34 
AnswerRe: Please i want help in crystal report with c# Pin
Justin Perez21-Jul-07 10:59
Justin Perez21-Jul-07 10:59 
AnswerRe: Please i want help in crystal report with c# Pin
MYOSRI21-Jul-07 11:15
MYOSRI21-Jul-07 11:15 
i just write this code in class named BindReport
public DataSet GetDataSet()
{
SqlConnection sqlconn = new SqlConnection(_connectstring);
SqlDataAdapter DA = new SqlDataAdapter("select aman_no,aman_name,aman_area from aman", sqlconn);
DataSet ds = new DataSet();
DA.Fill(ds,"aman");
return (ds);
}

and this code in form load

BindReport obj = new BindReport();
DataSet ds = obj.GetDataSet();
CrystalDecisions.CrystalReports.Engine.ReportDocument myRPTDocu = new CrystalDecisions.CrystalReports.Engine.ReportDocument();

myRPTDocu.Load(@"..\..\CrystalReport2.rpt");
myRPTDocu.SetDataSource(ds);
crystalReportViewer1.ReportSource = myRPTDocu;

and this code not work and give me exception "the report has no tables"
QuestionDataTable with rows and trying to move next and previous Pin
Marcel Vreuls (www.agentbase.nl)21-Jul-07 9:38
Marcel Vreuls (www.agentbase.nl)21-Jul-07 9:38 
AnswerRe: DataTable with rows and trying to move next and previous Pin
Amjath Rahman22-Jul-07 15:53
Amjath Rahman22-Jul-07 15:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.