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 strongm 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. tonylmiller

    Can Win NT, 98, Me Be Used with CR 10?

    Apparently these OS's are not supported for Crystal Reports 10. Does anyone know of any workarounds for this? I still have a lot of customers using Win 98, especially.
  2. tonylmiller

    Sharing Info Among Web Pages and Classes

    I'm just wondering what is the best way to pass info between web pages (several of them) and classes. In a Windows app, I would use a "GlobalVariables" class with public properties, but I don't believe that will work on a webserver. I need to set a UserID, for example, and it needs to be...
  3. tonylmiller

    How to put a subtotal on each page in CR.NET?

    Whoa, that looks like Greek to me. Must be Crystal syntax. Anyway, if I can copy and paste it, that's fine with me! Thanks for the help! Tony
  4. tonylmiller

    How to put a subtotal on each page in CR.NET?

    I want a subtotal in the page footer on every page. I found the running totals object, but how to reset it after each page? I am using Crystal Reports that came with VS.NET 2003. Thanks in advance, Tony
  5. tonylmiller

    Printing Margin difference between Web and Windows

    We are using Crystal Reports that came with Visual Studio.NET. We have tested all our reports (we have over 300 of them) in a web interface, and they are fine. Now we are using some of them in a windows crystalreportviewer, and there is about 1/4" additional margin on the left of the...
  6. tonylmiller

    Call function right after form is visible

    The form load event usually works for me. . .
  7. tonylmiller

    Using Variable (Dynamic) Class Name

    O.k., I got it working. Thanks for all the help!
  8. tonylmiller

    Using Variable (Dynamic) Class Name

    Wow, thanks a bunch! I put the "public interface IReport" code into my "Reports" class. When I try to build IReport myReport = Activator.CreateInstance ("myAssembly","namespace" + myType); I get the error: The type or namespace name 'IReport' could...
  9. tonylmiller

    Using Variable (Dynamic) Class Name

    Thank you for your reply. My problem is that the methods and properties in the report class are not available. The statement: myReport.SetDataSource(dataSet); gives an error because myReport does not contain that method (because it is not of the correct type, I suppose).
  10. tonylmiller

    Using Variable (Dynamic) Class Name

    Normally one would write: Class myClass = new Class(); But I want "Class" to change. Can I make the name of the class a variable? How? I used Object o = Activator.CreateInstance("myAssembly","namespace" + myType); but the object "o" has the type...
  11. tonylmiller

    Parent rows w/no Children Disappear after Summary

    I am passing an ADO.NET dataset which is linked through an agencyID field in both tables. The way I am passing the dataset in C# is: AgencyList.SetDataSource(dataSet); AgencyList is an instance of a report which I have defined. The records have been joined and filtered in the database...
  12. tonylmiller

    Parent rows w/no Children Disappear after Summary

    I already have the dataset and I am just inserting a summary field. Please be more specific about your suggestion to count where the join field is null and subtract from the count of the parent records. I do not understand what you mean. There are multiple parent records that have no child...
  13. tonylmiller

    Parent rows w/no Children Disappear after Summary

    I am using Crystal Reports that came with Visual Studio.NET. I am reporting from an ADO.NET relational dataset. Some of my parent records do not have child records (some agencies do not have any personnel). Everything is fine until I try to count the personnel (child records). When I put in...
  14. tonylmiller

    Deploying MSDE w/Windows APP in VS.NET

    I am currently developing a C# application in VS.NET which uses a SQL Server 2000 database. I have made a deployment project, and everything works fine. However, some of my customers will need to use the MSDE for their database (single user). I can install the MSDE myself and the project...
  15. tonylmiller

    Export Error in CR.NET (Access Denied)

    I am getting the following error when I try to export to a PDF file. As far as I know, no other application is using this report file. I am using Crystal Reports.NET. I am getting the error when I am in Visual Studio.NET and I try to build and browse the form. Error in File...
  16. tonylmiller

    Logon Failed Error in CR.NET using Excel Data

    I've set up an ODBC connection to my Excel workbook. When I browse the field in the report editor, the data are there. However, when I build and browse to the web browser (IE 6.0), I get a message that says "Logon Failed". The workbook is on my local hard disk. Any ideas? Thanks...

Part and Inventory Search

Back
Top