somebody can help me to fin all the trasncripts for the versant tests the ones DELL make in the phone pleasi i need help!!!
22 62044Post New WNS Interview Questions
How do I fix msvcp120 dll in windows 7?
Explain different modules in magento.
How do I enable activex in excel?
explain unit costing
What is Directed Acyclic Graph in Apache Spark?
Describe how to send email from a python script?
Where do we use get and post?
what operator is used to handle null exceptions in Kotlin?
What is json post?
What is a form collection in asp?
Difference between directive and pipe in angular?
What is the difference between internet and isdn?
Explain groovydoc comment?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
hi ... i've created one crystal report in windows form and one crystalreportviewer .. the following is my code.. in form1.cs file try { ExportOptions CrExportOptions; DiskFileDestinationOptions CrDiskFileDestinationOptions = new DiskFileDestinationOptions(); PdfRtfWordFormatOptions CrFormatTypeOptions = new PdfRtfWordFormatOptions(); CrDiskFileDestinationOptions.DiskFileName = "c:\\csharp.net- informations.pdf"; CrExportOptions = cryRpt.ExportOptions; { CrExportOptions.ExportDestinationType = ExportDestinationType.DiskFile; CrExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat; CrExportOptions.DestinationOptions = CrDiskFileDestinationOptions; CrExportOptions.FormatOptions = CrFormatTypeOptions; } cryRpt.Export(); } the above code is saving the file into pdf into specified path.. but i dont want to save a file i should get direct print preview and have a option to print .. As we do in web application using crystal report viewer clicking print and report will be opened in pdf.. and the click print.. i want the same function as we do in web application... i'm writing code in c#.net hope the above explaination will be understood clearly..