Recent content by Brian4321

  1. B

    Crystal Reports SetParameterValue not working any more!

    WannaFly, I did create a blank application with a blank CR report. It runs within my development environment and as a stand alone executable on my development CPU. However, when I move the exe and other files to a different CPU without Visual Studio installed, I get the same results as below...
  2. B

    Crystal Reports SetParameterValue not working any more!

    WannaFly, Although not shown in my code snippet, I had put a MsgBox ("About to execute ...") just before each of the lines of code. This is how I know the SetParameterValue line is the culprit. Thanks for the info on Fuslogvw. I'll read up on it and see if I can use it to detect any...
  3. B

    ColdFusion + SQL help requested

    Here is a snippet from a calendar routine in one of my apps. Hope it helps: <cfquery datasource="#DSN#" name="GetHolidays"> SELECT * FROM Holidays WHERE Holiday_Date = #TheDate# ORDER BY Holiday_Name ASC </cfquery>
  4. B

    Crystal Reports SetParameterValue not working any more!

    WannaFly, Thanks for responding so quickly. I did look in the application, security and system event viewers and there are no entries during the time I tried to run my application. I also verified that the CR libraries are installed on the computer. Thinking that I may have inadvertently...
  5. B

    Crystal Reports SetParameterValue not working any more!

    Hello, In 2006, I created a Vb.Net (version 2005 Professional) windows form application that accesses a back-end MS Access database. All reports utilize the Crystal Reports that is bundled with Vb.Net. For some reason, the below call to the SetParameterValue does not work any more. The...