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 strongm 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: *

  • Users: kkashwani
  • Order by date
  1. kkashwani

    Using Crystal On The Web

    Check these files "CR_URLSamples.exe" and "CR_WebRefresh.zip" on this web site http://support.crystaldecisions.net/interactive/exclusive/premium.asp
  2. kkashwani

    Using Oracle stored prcedures from CR

    Write Store procedure something like this PROCEDURE YourStoreProcedure( CompanyID IN Varchar2; RecordSet_Cur OUT REF CURSOR ) AS Begin OPEN RecordSet_Cur FOR SELECT * FROM TableName Where Company_ID = CompanyID; End; Try to connect this type of stored procedure with...
  3. kkashwani

    URGENT - Query regarding Crystal Reports and Access 2000.

    Hi First, why r you using ODBC for data base connection? You can connect your report directly with Access database(mdb file). At run time using vb code specify the database path like CrystalReport.Database="Your database path.mdb" Accessing the database directly is the fastest way...
  4. kkashwani

    Using a Recordset in Crystal Reports

    For this purpose Use RDC The Crystal Reports, Report Design Component(RDC) is an in-process ActiveX DLL based on the Component Object Model (COM). Crystal Reports RDC satisfies all of your dynamic reporting needs. Technical Support reference to the RDC examples contained in the downloadable...
  5. kkashwani

    Report Hangs through ASP ??

    Try this code hope it will work basePath = Request.ServerVariables("APPL_PHYSICAL_PATH" ) & "\myreport.rpt" Set session("oRpt") = session("oApp").OpenReport(basePath, 1)
  6. kkashwani

    Eliminate or bypass parameter prompt through VB code?

    To disables parameter prompting in VB so the user won’t be prompted for a value. 'CRXReport is report object in Report Design Component(RDC) CRXReport.EnableParameterPrompting = False
  7. kkashwani

    Reports Look Different On-Line Depending on User

    We are also facing the same problem with crystal report on web. Only solution is that don't display your report in Rpt format in report viewer, export it into PDF format then diaplay on browser.
  8. kkashwani

    Using ADO Recordset to Connect to Crystal Report

    For this purpose Use RDC The Crystal Reports Report Design Component(RDC) is an in-process ActiveX DLL based on the Component Object Model (COM). Crystal Reports RDC satisfies all of your dynamic reporting needs. Technical Support reference to the RDC examples contained in the downloadable file...
  9. kkashwani

    REPORT DISTRIBUTION - ORACLE SERVICE NAME

    Yes, you have to set Oracle Service Name on the foreign machine and then configured into an ODBC Server Name same as on development machine
  10. kkashwani

    How to [color red]suppress/hide query string?

    Try to use code something like this use your Rpt file as action file, <FORM METHOD=POST ACTION=&quot;YourReport.rpt&quot;> <input type=&quot;hidden&quot; name=&quot;username&quot; value=&quot;yourUser&quot;> <input type=&quot;hidden&quot; name=&quot;username&quot; value=&quot;yourPassword&quot;>
  11. kkashwani

    Can you predefine margins?

    You develop report in your machine and set printer that was install in your machine but the same printer is not installed on server. Install the same printer on server as on development machine then check report on web
  12. kkashwani

    pre-set number of records

    Use SQL Query in your crystal report that contain SQL like 'Top 20'.
  13. kkashwani

    How To Sort At Runtime

    If your using RDC for generating Crystal report in your VB appication then use below code You can put code like this in the General Declarations section. Dim CRXReport As New CrystalReport1 Dim CRXDatabaseField As CRAXDRT.DatabaseFieldDefinition Private Sub Form_Load() Currently there is no...
  14. kkashwani

    Crystal Report save data in VB app?

    Yes you can, Click Export button in you vb generated report, in export diaglog box select Crystal Report(Rpt) format and save your report copy with data.
  15. kkashwani

    single report connect to multiple databases dynamically

    if you have multiple databases with identical schemas and you are using VB as application to generate report dynamically then its better you develop your reports on Active Data(Field definitions Only) (.ttx file ext.) In this case you have no need to connect your reports to database server, you...
  16. kkashwani

    Alternative rows shaded, one column width only

    Don't shade entire section every other row for visual appeal. Select the field(column) which you want shaded every other row and change its color background only.
  17. kkashwani

    where to go for best online crystal training?

    Read Crystal Help or Study Samples provided by Crystal Decission

Part and Inventory Search

Back
Top