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 SkipVought 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. DavidTN

    from my XML to Word 2007

    I have read that you can do this, but I have yet to see any actual examples of this anywhere. Is anyone aware of any examples of how to 'transform or describe my XML format into something Word 2007 can interpret so it can merge my XML into its XML?' Thanks
  2. DavidTN

    how to create and write to a text file

    Thanks for the FSO code! I wanted to eliminate those pesky quotation marks. That did the trick :-)
  3. DavidTN

    ASP: Printing over the web using CReports

    This is VB code but looks like it may do what you want. CRViewer1.ReportSource = Report 'To print directly to printer use these 2 lines Report.PaperSource = crPRBinUpper Report.PrintOut False, 1, False CRViewer1.PrintReport Hope it helps! DavidTN
  4. DavidTN

    Passing parameters to subreport

    I don't know how close of a fit this will be for you, but the following code works for me: Dim Report As New CrystalReport1 Dim crxSubreport1 As CRAXDRT.SubreportObject Report.Database.Tables(1).SetLogOnInfo sParm1, , sParm2, sParm3 Report.ParameterFields(1).AddCurrentValue (sParm4) 'pass...
  5. DavidTN

    Create a LINK that goes back?

    Thanks. Works great.
  6. DavidTN

    Create a LINK that goes back?

    I need a link (not a button) that goes back. Any ideas?
  7. DavidTN

    Report Designer Component: any bad experience?

    I am not sure about questions 2 and 3, but to refresh the report I usually remove the report from the project and then add the newer, desired version. You can do this without affecting the .frm code.
  8. DavidTN

    Code for Passing Parameter to CR 8.5 from Oracle Forms

    I would like to pass an account ID from Oracle Forms 6.0 to use in a Crystal Report (8.5). I was told in a Crystal training class that I could use API, OCX or RDC. I would prefer not to have to use a VB.exe (RDC), but would prefer to use an API (CRP32.dll) call or OCX directly from Forms. I...
  9. DavidTN

    Connect to Oracle from Access w/ADO (not ODBC)

    I am trying to connect from Access to an Oracle 7.4 database and would prefer not to use ODBC (I am too old to wait for the data to return). Does anyone know ADO code to establish a connection to query Oracle tables/views? Thanks

Part and Inventory Search

Back
Top