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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by hc5316

  1. hc5316

    format for datetime to pass to (datetime) parameter

    Hi, I'm using asp page connect to crystal server to get report. For Datetime parameter... I use the same format as console: DateTime(2003,3,31,0,0,0) However, it seems the value of parameter (that the report received) is not correct... The report display the parameter value as...
  2. hc5316

    Convert the object to string

    I have tried.... cstr() doesn't work with object - only: bool, date, empty, error, numeric and null - not object..
  3. hc5316

    CrystalEnterprise 9 Error: "The rowset column could not be found"

    Thanks... for your reply The problem was b/c I don't know there is another report with the same name on a different folder... my query (accidentally) pull out that old report (which doesn't work).... Problem was solved by adding parent_folder_id.. into query to pull out the exact rpt. my...
  4. hc5316

    Convert the object to string

    '' The data from query result.. I have is an object....(parentFolderId) '' Response.Write display the value... but I have problem when append the parentFolderId to another string '' How to convert the object to string (get object value) ?? Dim parentFolderId set folderResult =...
  5. hc5316

    Convert object (from result.item) to string

    '' on my getreport.asp... '' I use query to get parent folder id... (the result datatype is object => vartype value is 9) '' Response.Write display the value... but I have problem when append the parentFolderId to another string '' How to convert the object to string (get object value) ?? Dim...
  6. hc5316

    CrystalEnterprise 9 Error: "The rowset column could not be found"

    ---------------------------------------------------- Error Type: webReporting.dll (0x80004005) "The rowset column could not be found. File 5b42f5f41b6fd2.rpt." /crs/getreport.asp, line 231 ----------------------------------------------------- Line 231: Call...
  7. hc5316

    How do you achieve it (possibly without CSP programming)?

    [celticshores and radkkc and other Crystal Experts] Have you see (or have any idea with) some error like this ? ----------------------------------------------------- Error Type: webReporting.dll (0x80004005) "The rowset column could not be found. File 5b42f5f41b6fd2.rpt.&quot...
  8. hc5316

    How do you achieve it (possibly without CSP programming)?

    With: Set result = iStore.Query("Select SI_ID from CI_INFOOOBJECTS") I don't think it knows which report to return you the id. It should be: Set Result = IStore.Query("Select SI_ID From CI_INFOOBJECTS Where SI_NAME = '" & ReportName & "'")

Part and Inventory Search

Back
Top