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. chiarak

    Question regarding XSL Drop Down

    Hi, I am relatively new to using XSL. I am using the XSL to manipulate some XML. I was wondering if its possible to trigger some javascript after the value in a drop down has been updated? In the code below I am trying to trigger the CheckPool javascript everytime the value in the Pools drop...
  2. chiarak

    Perl ftp truncates file

    Hi - problem solved... Turns out that the files were not being ftped in full due to the fact that I was not closing them beforehand. They were opened earlier in the script to add data to and the ftp was dropping records as I was not closing them afterwards. Thanks anyway..
  3. chiarak

    Perl ftp truncates file

    Hi I am using Net::FTP to ftp a file as follows : $ftp-NET::FTP->new($server); $ftp->login($name,$pwd); $ftp->cwd( ".."); $ftp->ascii(); $ftp->put($dataFile,$localFileName); printf"%s\n",$ftp->message; $ftp->quit; When I open the file that has been transferred it is...
  4. chiarak

    Hi I am trying to run a bcp comm

    Hi I am trying to run a bcp command to import data into a sybase database from a perl script. I have a text file which I create as tab delimited and I use the following command to perform the import bsb in perl : print `bcp dbname..table in filename -c -eERR -Sserver -Uuser -Ppwd`; The bcp...
  5. chiarak

    Crystal 8 Report exports incorrectly to Excel

    Hi I don't actually have access to the web server to check the dlls but which dll would need to be there for exporting to excel with entended options?? Thanks Chiara
  6. chiarak

    Crystal 8 Report exports incorrectly to Excel

    Hi I have a crystal report which when I export to excel 8.0(Extended) turns out exactly as I require. However I need to view this report via my web server and the export option does not include excel extended - is there a way around this?? The regular export on the web server is inserting blank...
  7. chiarak

    Subreport within a subreport

    I'll have to work around it then... Thanks a mill.
  8. chiarak

    Subreport within a subreport

    Hi I was just wondering if its possible to have a subreport within a subreport? My initial subreport consists of a list of details..under this I need another report which lists related details. Is this possible?? It looks ok when I create the new subreport on the first subreport but when I...
  9. chiarak

    Can I hide the link to a subreport

    Hi Thanks for this - I supressed the link based on Dealtype - works nicely. Just one thing...even when the link isn't visible you can still activate the report by clicking where it should appear - any way of avoiding this???? Thanks a million Chiara
  10. chiarak

    Can I hide the link to a subreport

    Hi I am unable to manipulate the recordset as I attach the crystal report directly to the stored proc at design time. Also I do not want to limit the dealtypes that appear but only have the link to the subreport appear on certain dealtype lines. I want all dealtypes on the report with a link...
  11. chiarak

    Can I hide the link to a subreport

    Hi Thanks for replying, however, I don't think I can create a formula on the main report as I am just using Crystal linked to a sybase stored procedure, not invoking it from VB or anything. Would I be right in thinking this or where were you advising I add the above code?? Thanks again.. Chiara
  12. chiarak

    Can I hide the link to a subreport

    Hi, I have an initial report that lists dates, amounts,dealtypes and dealIds. In the case of certain dealtypes I need to be able to click on them and pass their dealId through as a parameter to a subreport. Currently I am using an on-demand subreport linked on dealId. If I click on the...
  13. chiarak

    Using Crystal On The Web

    Hi You can download the patch crpe32.dll at ftp://ftp.crystaldecisions.com/outgoing/EHF/cr80main.zip Update utility should work fine then. Chiara
  14. chiarak

    passing parameters to subreports

    Hi endoflux Usually when I add a subreport I then right click on the subreport and select Edit Subreport Links, within here you link the main report parameters to the Subreports parameters and the values will get passed directly from the main report through to the Subreport. To do the linking...
  15. chiarak

    Multiple databases

    Hi Hattusas I downloaded update8x utility from the Crystal website to help with a similar problem. This utility will allow you to select all reports in a directory and set the database and server name for them. Saves having to copy each report and do a Set Location manually. I just made a copy...
  16. chiarak

    Using Crystal On The Web

    Thanks I actually emailed the Crystal help desk and they sent me a patch to update my version of this dll and the update8x works perfectly now - is good for transferring between servers where the database name is the same.
  17. chiarak

    Using Crystal On The Web

    Hi, When I try to execute update8x.exe I get an error - cannot find procedure PESetDictionaryLocation in CRPE32.dll. CRPE32.dll comes with the utility in the first place so I'm not sure what can be done... Any ideas? Thanks a mill Chiara
  18. chiarak

    Using Crystal On The Web

    Hattusas Someone has suggested I try the crystal utility update8x - I've read the doco and it sounds good - at the moment I'm having dll problems with it but it might be what you're after - let me know how you go... Cheerio Chiara
  19. chiarak

    Database and Server stored in .rpt file

    Hi, Thanks so much for replying, I do appreciate the help. But am I right in thinking that even if I use ASP to set logon dynamically that I need a separate verion of the .rpt file saved for the report for each server/database combinationn on each server?? What I am basically trying to avoid is...
  20. chiarak

    Database and Server stored in .rpt file

    Hi, My basic problem is that I need to connect to several sybase databases from different servers to run the same report. Currently this means having 3-4 versions of each report seeing as the server and database details seem to be stored in the .rpt file somewhere. What I am trying to aviod is...

Part and Inventory Search

Back
Top