Click here to Skip to main content
15,881,882 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Sending Email Pin
Laddie31-Mar-08 2:21
Laddie31-Mar-08 2:21 
GeneralGenerate asp.net page on the fly [modified] Pin
Pawel Gielmuda30-Mar-08 21:44
Pawel Gielmuda30-Mar-08 21:44 
GeneralRe: Generate asp.net page on the fly Pin
Guffa31-Mar-08 0:14
Guffa31-Mar-08 0:14 
GeneralRe: Generate asp.net page on the fly Pin
Pawel Gielmuda31-Mar-08 3:07
Pawel Gielmuda31-Mar-08 3:07 
GeneralCrystal Reports 2008 exportformats are missing in viewer Pin
livez30-Mar-08 21:31
livez30-Mar-08 21:31 
Questionhow to bind datatable to crystal report viewer Pin
ashok@techxygen30-Mar-08 21:03
ashok@techxygen30-Mar-08 21:03 
AnswerRe: how to bind datatable to crystal report viewer [modified] Pin
livez30-Mar-08 21:28
livez30-Mar-08 21:28 
GeneralProblem with Crystal Report Pin
Deepak Nigam30-Mar-08 20:28
Deepak Nigam30-Mar-08 20:28 
Hello Friends...

In my application i have to generate reports using PUSH Model.I have used the following code in my app.

public void BindReport()
{

SqlConnection myConnection = new SqlConnection();

myConnection.ConnectionString = "server=.;database=Test;uid=sa;pwd=test; ";

SqlCommand MyCommand = new SqlCommand();

MyCommand.Connection = myConnection;

MyCommand.CommandText = "Select * from EmployeeMaster";

MyCommand.CommandType = CommandType.Text;

SqlDataAdapter MyDA = new SqlDataAdapter();

MyDA.SelectCommand = MyCommand;

DataSet2 myDS = new DataSet2();

//This is our DataSet created at Design Time

MyDA.Fill(myDS, "EmployeeMaster");


// CrystalReport1 oRpt = new CrystalReport1();

// This is the Crystal Report file created at Design Time

//oRpt.SetDataSource(myDS);

// Set the SetDataSource property of the Report to the Dataset


CrystalReportViewer1.ReportSource = oRpt;

// Set the Crystal Report Viewer's property to the oRpt Report object that we created


}

But the problem is that i am not able to access the report that i have created at the design time.
Thats the main problem that i am having plase help me out.......

Deepak Nigam

Generaltext changed event Pin
Kissy1630-Mar-08 20:22
Kissy1630-Mar-08 20:22 
GeneralRe: text changed event Pin
$unil Dhiman30-Mar-08 21:23
$unil Dhiman30-Mar-08 21:23 
GeneralRe: text changed event Pin
Kissy1630-Mar-08 21:32
Kissy1630-Mar-08 21:32 
Questionhow to open MSI in a new window [modified] Pin
bigphish30-Mar-08 19:33
bigphish30-Mar-08 19:33 
GeneralCheck rowindex exists or not in a grid problem Pin
SreejithAchutan30-Mar-08 18:59
SreejithAchutan30-Mar-08 18:59 
GeneralRe: Check rowindex exists or not in a grid problem Pin
farazsk1130-Mar-08 21:49
farazsk1130-Mar-08 21:49 
GeneralRe: Check rowindex exists or not in a grid problem Pin
Laddie30-Mar-08 23:29
Laddie30-Mar-08 23:29 
Questionhow to show sub menu items horizontal Pin
$unil Dhiman30-Mar-08 17:00
$unil Dhiman30-Mar-08 17:00 
GeneralRe: how to show sub menu items horizontal Pin
Abhijit Jana30-Mar-08 20:12
professionalAbhijit Jana30-Mar-08 20:12 
GeneralRe: how to show sub menu items horizontal Pin
$unil Dhiman30-Mar-08 20:59
$unil Dhiman30-Mar-08 20:59 
GeneralRe: how to show sub menu items horizontal Pin
Abhijit Jana30-Mar-08 22:24
professionalAbhijit Jana30-Mar-08 22:24 
GeneralRe: how to show sub menu items horizontal Pin
Abhijit Jana30-Mar-08 22:32
professionalAbhijit Jana30-Mar-08 22:32 
GeneralRe: how to show sub menu items horizontal Pin
$unil Dhiman31-Mar-08 0:11
$unil Dhiman31-Mar-08 0:11 
GeneralRetrieve data and display in textbox Pin
guardianhm30-Mar-08 16:55
guardianhm30-Mar-08 16:55 
GeneralRe: Retrieve data and display in textbox Pin
N a v a n e e t h30-Mar-08 19:34
N a v a n e e t h30-Mar-08 19:34 
QuestionSecurity / authentication etc Pin
mcrooks30-Mar-08 12:45
mcrooks30-Mar-08 12:45 
GeneralRe: Security / authentication etc Pin
CooperWu30-Mar-08 18:54
CooperWu30-Mar-08 18:54 

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.