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

    Sequence of operations in loading report...

    am using CR for VS.Net. I am implementing my own toolbars and menus for crystal reports in our application. I want to know the sequence of operations of loading of crystal reports: 1.Loading of rpt 2.accessing the database 3.finish loading data The reason I need the sequence of the above is...
  2. bgravi

    Exporting multi page report to Html ...

    Oops, it was my mistake. I was setting the separate pages property by mistake. However, I noticed that even though all pages can be exported to one html file, only the last page footer appears in the html file, and page footers of other pages do not appear. This doesn't make much sense as it...
  3. bgravi

    Exporting to Html in given directory...

    I am using Crystal Reports for VS.Net. When I export to a Html file, it generates a sub directory under the directory specified and then exportes fiel to that directory. In our application, the user determines which directory he wants to export the file to, so the user will get confused if...
  4. bgravi

    Exporting multi page report to Html ...

    Hi, I am using CR for VS.Net. When I try to export my multi-page report to HTML format, it generates multiple html pages, one for each page of the report!! I don't want this functionality and want to generate just one html file for each report. How can I do this? Thanks Ravi
  5. bgravi

    Changing authentication mode at runtime...

    If I create my reports without integrated security at design time, is there any way that I can make it use integrated windows authentication at runtime? or vice versa? I am using Crystal Reports with Visual studio .Net. Thank you
  6. bgravi

    Refresh method doesn't work on ReportDocument object...

    The problem I noticed is with respect to the Refreshing. If I change any formula/text on the ReportDocument and call it's Refresh method, it doesn't work . The following code does not work. ReportDocument rd = crystalReportViewer1.ReportSource as ReportDocument ; FieldObject fo =...
  7. bgravi

    Error setting filter condtion at runtime on ReportDocument object...

    I am having problems filtering records at runtime thru the ReportDocument object. I am using CR with VS.Net Once the report loads the data and it is displayed, and if I have to change the record when the user selects a criteria for filtering it, then it doesn't work. The following piece of code...
  8. bgravi

    The "IN" keyword to select records...

    I wish it were that simple !! The search values depend on user input. The user might enter it in lower or upper case. The data in the database is also populated by the user. So, the string match must be case-insensitive. Thank you
  9. bgravi

    The "IN" keyword to select records...

    It appears to be case sensitive. How can make it case-insensitive? I am setting the DataDefinition.RecordSelectionFormula value at runtime. I am using CR with VS.Net
  10. bgravi

    The "IN" keyword to select records...

    I need to have a formula similar to the following Sql statement SELECT au_lname, state FROM authors state IN ('CA', 'IN', 'MD') which is the equivalent of WHERE state = 'CA' OR state = 'IN' OR state = 'MD' Does Crystal Reports support this form of "IN" statement? I tried to do it...
  11. bgravi

    Displaying Max value row in groups...

    I am using Crystal Reports for Visual Studio.Net and there isn't any provision for adding the Where statement!!!
  12. bgravi

    Displaying Max value row in groups...

    Hi, I am trying to do the following: Please consider this scenario. One table has list of all customers, and another table has all the purchase made by this customers. The two tables are linked by customer id. Now, I need to present a report listing the most recent purchases of the customers...
  13. bgravi

    Displaying Max value row in groups...

    Hi, I am trying to do the following: Please consider this scenario. One table has list of all customers, and another table has all the purchase made by this customers. The two tables are linked by customer id. Now, I need to present a report listing the most recent purchases of the customers...
  14. bgravi

    Show/Hide columns at runtime...

    Hi James, Thanks for your reply. I am a newbie in CrystalReports. Can you please give me a small sample code as an example so that I can understand your solution better? Thanks
  15. bgravi

    Show/Hide columns at runtime...

    I need to develop a report which initially shows a few fields. The user has an option of selecting the columns he want to see by selecting them from an option provided. My questions are: 1. Can I make a report which hides/shows certain columns? I tried to do this by suppressing them at runtime...

Part and Inventory Search

Back
Top