Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Sakheb

    Anything similar to XMLHTTP in JAVA?

    I have a J2EE app running already, but now I need to download a HTML page from the server side. I know the XMLHTTP object can download a page, but it runs on the client side...which is no good for me. Is there a way in JAVA (servlet) I can access a HTML file and store it in a variable...
  2. Sakheb

    FTP Access of an Intranet site externally

    Hi - I have an FTP site on our intranet, how can I get people to access it externally without changing the permissions on our intranet server? thanks, Sakheb
  3. Sakheb

    EXport to PDF/XLS/DOC Code needed!!!!

    The report needs to be converted when a VB program is executed, which will take this crystal report and then convert it into a word document/PDF. Everything is done on the back-end. So I would need some sample VB code. here's what I have so far: Dim CrAppl As craxdrt.Application Dim...
  4. Sakheb

    Export to PDF/XLS/DOC code needed!!!!!

    The report needs to be converted when a VB program is executed, which will take this crystal report and then convert it into a word document/PDF. Everything is done on the back-end. So I would need some sample VB code. here's what I have so far: Dim CrAppl As craxdrt.Application Dim...
  5. Sakheb

    Export to PDF/XLS/DOC code needed!!!!!

    I have a crystal document (cyrstal 8.5) that I need to export to other formats. I need sample code that will export a crystal report to Microsoft Word/Excel or even PDF formats. Any code is appreciated. thanks, Sak
  6. Sakheb

    EXport to PDF/XLS/DOC Code needed!!!!

    I have a crystal report (8.5) I need to be exported to other formats. I just need some sample code in VB6 that will export a crystal document to Microsoft Word, Excel or even PDF format. Any code will help. thanks, Sak
  7. Sakheb

    Converting from ver. 7 to ver 5

    I have a crystal report designed in version 8.5. However, my co-worker needs to open it. She only has version 5 of crystal reports. I managed to convert from 8.5 down to ver. 7. Is there any way I can get this report converted to version 5??? Or can I do something to it so she can open it in...
  8. Sakheb

    Export to PDF???

    Can somebody please help me with some VB code. I need to open up a crystal report and export it in PDF format. Does anybody have any code for that? this is what I have so far: Dim CRApp As New CRAXDDRT.Application Dim CRRpt As New CRAXDDRT.Report CRApp.OpenReport...
  9. Sakheb

    Landscape printer problem

    ya, I think the default is set to portrait. I tried changing the orientation of the printer by this code: for each x in printers if (x.devicename = "\\serve1602\printer1") then x.orientation = vbprorLandscape end if next x but, turns out, the x.orientation is just a read only...
  10. Sakheb

    Landscape printer problem

    when I print from a crystal object in VB6 everything works fine. All the portrait oriented reports get printed as portrait. All the landscape oriented reports get printed as landscape. But, when i change the printer properties in the crystal object (PrinterPort, PrinterDriver, PrinterName)...
  11. Sakheb

    CR: How to set printer in VB

    I have a VB program which generates the Crystal reports and prints them off. The reports are printed to a default printer. I need to know how they can be printed to some other specific printer. Like, what is the code that I should put in my VB program to send some printing jobs to a non-default...

Part and Inventory Search

Back
Top