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

    Bug in CR8 using CDO (CrystalDataObjects)

    Please, look for this simple example: Dim as Object Dim Rows as Variant Set cdoRowSet = CreateObject("CrystalDataObject.CrystalComObject") ... 'Filling array Rows ... cdoRowSet.AddRows Rows CrystalTable.SetPrivateData 3, cdoRowSet What's wrong? - Nothing. It's work in 99,9% cases...
  2. Gennady

    Event ExportButtonClicked doesn't fire :(

    Dear Sir/Madam I have CR 8.0. And all export dlls exist. I can export ready-made report to Exel and so on. Imagine that I want write to log time when user trying to print my report. I declare Private CrystalReportView As CRPEAuto.View Private WithEvents WindowView As Window and write sub...
  3. Gennady

    Event ExportButtonClicked doesn't fire :(

    Dear Sir/Madam I have CR 8.0. And all export dlls exist. I can export ready-made report to Exel and so on. Imagine that I want write to log time when user trying to print my report. I declare Private CrystalReportView As CRPEAuto.View Private WithEvents WindowView As Window and write sub...
  4. Gennady

    Event ExportButtonClicked doesn't fire :(

    May be somebody knows. VB code: Private CrystalReportView As CRPEAuto.View Private WithEvents WindowView As Window Set WindowView = CrystalReportView.parent Event WindowView_RefreshButtonClicked -> fired Event WindowView_CloseButtonClicked -> fired .... Event WindowView_ExportButtonClicked...
  5. Gennady

    How can I allow user change something in CR after report was formed?

    Dear Ken Hamady Thank you for answer. But formulas isn't exactly what I want. I have almost ready report and user can see it on his screen. But he want edit some numbers or literals and after that send report to printer. Could he do it with CR? May be some additional dll exist or we need some...
  6. Gennady

    How can I allow user change something in CR after report was formed?

    I need allow users to change something in text field after report was created from VB program. In another words my users wants editing reports. Can I solve this problem with Crystal Report? If so, how can I do it?
  7. Gennady

    CR Performance :(((

    Dear Ruairi and Steven I using now Crystal Reports for two projects. One of them - 3-tier application and I use now stored procedures and bisness object for preparing recordset for Crystal. Another project - ordinary desctop application and I use scheme like Ruairi wrote. Both of you are...
  8. Gennady

    CR Performance :(((

    Steve and Malcolm, Thank you both for advice. This repors are simlest part of project that I working for. I wanted use existing bisness objects through Crystal Data Objects for quick design some dozen of simple reports. But I understand I must write some additional BO. Crystal Reports...
  9. Gennady

    CR Performance :(((

    I'm realy disappointed about Crystal Report Performance. Look for a very simple example - report that shows employees whose birthday hits in selected period. Report selection formula : Month({?DateBegin})<=Month({domainEmployee.eBirthDate}) And...
  10. Gennady

    How can I remove OUTER JOIN ?

    I'm using CDO in some CR reports. When I link two tables through fields with String data type I receive outer join relation. Sometimes it's good, in other case it's a toothache. In the link options I can't see something usefull. Can I change link type?
  11. Gennady

    How can I migrate CR report from one database to another?

    I need to migrate CR report from Informix database with custom OLE DB provider to report based on Crystal Data Objects (with .TTX files). The structure of tables and fields is the same. I've removed all references on previous database and added new live references. But in VB runtime (not in CR...
  12. Gennady

    2 tables INSERT/UPDATE at the same time?

    Just guessing but have you tried: - $sql = &quot;INSERT INTO tableA (name,address,fax,email) VALUES ('$name','$address','$fax','$email'); INSERT INTO tableA (name,address,fax,email) VALUES ('$name','$address','$fax','$email');commit;&quot;; Ged Jones It must work.One note - in the second...

Part and Inventory Search

Back
Top