Click here to Skip to main content
16,018,525 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: How do I generate a System::Drawing::Color array? Pin
Manfr3d19-Feb-08 8:55
Manfr3d19-Feb-08 8:55 
GeneralRe: How do I generate a System::Drawing::Color array? Pin
Mark Salsbery19-Feb-08 9:17
Mark Salsbery19-Feb-08 9:17 
GeneralRe: How do I generate a System::Drawing::Color array? Pin
Mark Salsbery19-Feb-08 9:25
Mark Salsbery19-Feb-08 9:25 
GeneralRe: How do I generate a System::Drawing::Color array? [modified] Pin
Dave Doknjas18-Feb-08 12:56
Dave Doknjas18-Feb-08 12:56 
GeneralRe: How do I generate a System::Drawing::Color array? Pin
Mark Salsbery18-Feb-08 13:12
Mark Salsbery18-Feb-08 13:12 
GeneralRe: How do I generate a System::Drawing::Color array? Pin
Manfr3d19-Feb-08 0:40
Manfr3d19-Feb-08 0:40 
GeneralRe: How do I generate a System::Drawing::Color array? Pin
Dave Doknjas19-Feb-08 4:31
Dave Doknjas19-Feb-08 4:31 
GeneralCrystal Report Error Message [modified] Pin
mikobi18-Feb-08 4:35
mikobi18-Feb-08 4:35 
I load a report from my Visual c++ NEt program.
I have a error message : invalid report file path,evenif the report is in this directory
my code is bellow.

What can be the problem ?

SqlConnection^ cprl = gcnew SqlConnection();
cprl->ConnectionString = "Persist Security Info=False;Integrated Security=SSPI;database=payroll08;server=sem;Trusted_Connection=Yes;" ;
cprl->Open();
// Ds_report^ data = gcnew Ds_report();
DSENFANTS^ data = gcnew DSENFANTS();
SqlDataAdapter^ adapt = gcnew SqlDataAdapter();
SqlCommand^ Cmd = gcnew SqlCommand();
Cmd->CommandText = "select* from ficenf";
Cmd->CommandType = CommandType::Text;
Cmd->Connection = cprl;
adapt->SelectCommand::set(Cmd) ;
adapt->Fill(data,"enfants");
RDEnfants->SetDataSource(data);
RDEnfants->Load(L"c:\\GESTION\\payrollv2\\payrollv2\REPENFANTS.rpt");
//rptsearchsig->PrintToPrinter(1,true,0,65500);
RVENFANTS->ReportSource = RDEnfants;
//crystalReportViewer1->ReportSource = rptsearchsig;

modified on Monday, February 18, 2008 10:54 AM

GeneralNon document printing with Visual C++ 2005 NET Pin
mikobi14-Feb-08 20:21
mikobi14-Feb-08 20:21 
GeneralRe: Non document printing with Visual C++ 2005 NET Pin
led mike15-Feb-08 4:25
led mike15-Feb-08 4:25 
GeneralRe: Non document printing with Visual C++ 2005 NET Pin
mikobi19-Feb-08 2:01
mikobi19-Feb-08 2:01 
GeneralTo add items programmatically to Combobox Pin
mikobi13-Feb-08 4:50
mikobi13-Feb-08 4:50 
GeneralRe: To add items programmatically to Combobox Pin
led mike13-Feb-08 6:43
led mike13-Feb-08 6:43 
GeneralRe: To add items programmatically to Combobox Pin
mikobi13-Feb-08 18:28
mikobi13-Feb-08 18:28 
GeneralRe: To add items programmatically to Combobox Pin
led mike14-Feb-08 4:28
led mike14-Feb-08 4:28 
GeneralRe: To add items programmatically to Combobox Pin
mikobi13-Feb-08 18:35
mikobi13-Feb-08 18:35 
GeneralRe: To add items programmatically to Combobox Pin
mikobi13-Feb-08 18:50
mikobi13-Feb-08 18:50 
Generalinitialise variables at the starting of program Pin
mikobi13-Feb-08 1:56
mikobi13-Feb-08 1:56 
GeneralGlobal variables Pin
mikobi13-Feb-08 1:55
mikobi13-Feb-08 1:55 
GeneralRe: Global variables Pin
Giorgi Dalakishvili13-Feb-08 4:14
mentorGiorgi Dalakishvili13-Feb-08 4:14 
GeneralRe: Global variables Pin
mikobi13-Feb-08 18:55
mikobi13-Feb-08 18:55 
QuestionHow to redirect data using asynchronous read operation.... Pin
Ashish Chauhan13-Feb-08 1:11
Ashish Chauhan13-Feb-08 1:11 
AnswerRe: How to redirect data using asynchronous read operation.... Pin
led mike13-Feb-08 6:41
led mike13-Feb-08 6:41 
GeneralRe: How to redirect data using asynchronous read operation.... Pin
Ashish Chauhan13-Feb-08 19:24
Ashish Chauhan13-Feb-08 19:24 
GeneralRe: How to redirect data using asynchronous read operation.... Pin
led mike14-Feb-08 9:18
led mike14-Feb-08 9:18 

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.