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 Mike Lewis 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. Neil111

    Hyperlinks ignored

    It sounds like one of two things to me. Either your browser is caching the report or the CR backend is deeming the hyperlink's request to not need a new hit on the database and is pulling the previous page from the cache server. There's tons of places and reasons that a report can become cached...
  2. Neil111

    Where is admin.cwr and what does this?

    admin.cwr resides here: /crystal/enterprise/admin/en/admin.cwr it is the login page for the CMC.
  3. Neil111

    ASP and Designer Object in sessions

    I've managed to get the designer component working nicely in sessions in my ASP scripts. My question is to do with the sessions that store the objects. I realise that this is necessary to pass the required information to the page server, but I really don't like the way the licence is still used...
  4. Neil111

    Parameter passing problem

    Thanks for your answers, but I figured out that passing the parameters on the Query string is not a good enough solution. I downloaded the ASP tutorials and sample code and am currently looking at using serverside objects.
  5. Neil111

    Nasty CR objects and ASP

    If Not IsObject(session("oApp")) Then Set session("oApp") = Server.CreateObject("CrystalRuntime.Application") End If If isObject(session("oRpt")) then set session("oRpt") = nothing End If set session("oRpt") =...
  6. Neil111

    Parameter passing problem

    After discovering and using the paramter passing on the query string, I used the following URL: http://localhost/report.rpt?init=html_frame:connect&user0=u&password0=p&sf={table.column}+like+"*test*" And it works fine. I have two questions regarding this: 1) Can I define a selection...
  7. Neil111

    Advanced Report viewer

    Hi, I'm in the process of developing a report viewer for Crystal Enterprise 8. I'm totally new to Crystal reports and have been reliably informed that there is a way to pass a custom SQL WHERE clause to a report. This Where clause would be built up using either CSP or ASP and a form, giving the...

Part and Inventory Search

Back
Top