12-08-2006 05:11 PM
http://forums.ni.com/ni/board/message?board.id=180&message.id=10060
NI in its answer was saying which was treating the PB. Have you got a solution today?.
Regards JY
12-09-2006 06:40 AM
12-09-2006 09:24 AM
Thanks but I had tried with the following easy sotfware (the text is very shortly) and I have always got the same error message
if (InitCVIRTE (0, argv, 0) == 0)
return -1;
if (NIReport_New (&reportHandle) < 0) {
MessagePopup ("ERROR", "Could not initialize NI Reports...");
return -1;
}
MessagePopup ("NIReport Sample", "The application will generate a sample "
"report and send it to your default "
"printer");
NIReport_NewPage (reportHandle); //JYD
NIReport_AppendLine (reportHandle, "This is a new page!"); //JYD
if (!NIReport_Print (reportHandle, NULL, 1))
MessagePopup ("NIReport Sample", "Report printed successfully!");
else
MessagePopup ("NIReport Sample", "Error printing report...");
NIReport_Discard (reportHandle);
12-09-2006 09:28 AM
08-03-2007 10:03 AM