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 IamaSherpa 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. Bullfrog1870

    Need to create reports for an application using v8.5 viewer

    I have CR XI on my laptop for developing reports. I have a client that has an older custom application that supports the viewing of v8.5 Crystal Reports. He's not willing to change on his end. I don't have v8.5 Crystal Reports to develop or modify reports for him. What are my options? Can...
  2. Bullfrog1870

    How do I know when to use keyword 'New'?

    I still don't understand when to use the keyword New and when not to, when declaring an object. Example: System.IO.Directory does not require a New keyword to create a variable. However, System.IO.DirectoryInfo does require New for a new variable. How do I know this? Other than...
  3. Bullfrog1870

    Problem w/ ADT's and istream / ostream

    I'm trying to work on the "Fractions" implementation in C++. I've been given the header as follows but can't figure out how to implement the functions for getFract / putFract. The user would type "1 2" to represent 1/2. Can someone help? Thanks! ....excerpt from fraction.h...
  4. Bullfrog1870

    Setting the value of a char variable

    I feel foolish for asking but what am I missing? I'm simply trying to set a variable equal to a single character. Dim myChar As Char myChar = 'A' 'This gives "Expression Expected" error myChar = "A" 'Option Strict is on so this won't work How should I be doing this? Is it possible to...
  5. Bullfrog1870

    Do Loop locking up looking for "\EndOfDoc" (MSWord)

    I'm trying to loop through a Word document and find all occurrences of a particular word. However, once it finds all of them, the Do-Until loop appears to lock up or get stuck since it really hasn't hit the end of document. If I change the .Wrap property to wdFindContinue it just loops...
  6. Bullfrog1870

    How do I put conditional record count in Report Header

    That appears to have been the core of my problem. I was using a formula field versus a table field. This gets me wondering. Why does CR act differently when looking at a table field versus a formula field? Why should it care where the recordset comes from?
  7. Bullfrog1870

    How do I put conditional record count in Report Header

    I have a parameter that the user enters (OrderSalesLimit). I'm wanting the report header to say: "There were (x) orders with a sales limit of (y) or greater." I tried the following but it did not work. It only ever shows a value of 1. Global NumberVar iCounter; whileprintingRecords; if...
  8. Bullfrog1870

    How do I alter report header based on ODBC connection

    I'm not sure I follow? I could create a simple table to cross reference the names but how do I get CR to display the name of the database it's 'hitting'?
  9. Bullfrog1870

    How do I alter report header based on ODBC connection

    I want to create a generic report and use it on multiple databases. I was hoping to look up the name of the ODBC connection and use a formula to lookup and display a user friendly name on the top of the report. Example: If ODBCName = 'dbPhoenix' then ReportHeader.Title = 'Phoenix Regional...
  10. Bullfrog1870

    Opinions on CR Viewers

    Thank you both for your feedback. I now have a few to compare features. Regards....
  11. Bullfrog1870

    Opinions on CR Viewers

    We are looking for a simple CR Viewer for a handful of our employees. We're not interested in building a .net or web solution. Using CR XI Pro. I browsed the web for viewers and the following is about the only one that caught my eye. Anyone have feedback on this product or others similar to...
  12. Bullfrog1870

    How do I exclude two names from my Group Tree

    I have a simple report getting a list of last name, first name, phone number. It works fine except I want to exclude the names "Smith" and "Jones" from the group selection in the group tree. How do I do this? I tried somethinglike {table.lastname} <> "Jones" as a formula but it just returned...
  13. Bullfrog1870

    Refresh required all the time? (ASP.NET)

    I have a simple report being displayed via ASP.NET in VB. Every time I hit a navigate button on the CRViewer toolbar the report disappears (no errors). I had to add the following code to my Page_Load routine to get the results I wanted. If Page.IsPostBack Then...
  14. Bullfrog1870

    Parameter Prompt not popping up in web page (CR9)

    Thanks for the feedback. Unfortunately I still can't get it. I've deselected the report option for saving with data. It doesn't appear I have the EnableParameterPrompting property available in my versions (see versions in previous post). At least you've confirmed it is a capability. Thanks...
  15. Bullfrog1870

    Parameter Prompt not popping up in web page (CR9)

    Using CR v9.2 along with VS.2003 In CR I have a single parameter (integer) and when I preview it prompts me the way I expect. However, when I put this into my asp.net page it doesn't prompt me for a value for my parameter; instead it uses the last saved when I was in CR. I can change the...

Part and Inventory Search

Back
Top