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 gkittelson 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. Salthead

    Having trouble calling a report with subreports from .Net

    I cobbled together this code from postings on the web. It blows with an "Object reference not set to an instance of an object" for crReportObject.Kind. What am I doing wrong? Public Function RunCrystalReport2(ByVal strReportName As String _ , ByVal colparam As...
  2. Salthead

    DATA TYPES ARE NOT COMPATIBLE

    I have two databases (each with a table that I need to join together.) One is a SQLServer db and the other is an Oracle db. In the first case, the employee number is an integer and in the second the employee number is a string. When I link the two tables together based upon the emp# field, I...
  3. Salthead

    Execution of REPORTDOCUMENT.LOAD CAUSES ATTEMPTED LOGON

    Everything was working fine. Then we upgraded to 2003 .NET. Now when the line [crReportDocument.Load(strReportPath)] executes, the program pops up a Novell Client Login screen, and wants me to give the password for User ASPNET so that the user can be logged in. I am logged in under my...
  4. Salthead

    Need Help opening new browser and retrieve results

    I'm trying to open a new browser window, allow the user to select a date, pass the date back to a textbox on the parent window, and close the child. Everything seems to work fine except the textbox does not get filled with the date. What am I missing? Is there a better way that this method...
  5. Salthead

    Displaying Date from a passed parameter in a certain format

    Here's what finally worked for me: totext(({?BegDte}),"MM/dd/yyyy") & " - " & totext(({?EndDte}), "MM/dd/yyyy") Although I am passing strings from the text boxes to the date params, the date params in Crystal are typed as dates. Crystal must be performing the...
  6. Salthead

    Displaying Date from a passed parameter in a certain format

    Using your suggestion, I was able to create a work around by placing each date on the report separately with a label displaying the hyphen between the two dates. I made the first date right aligned, I made the hyphen center aligned, and I made the second date left aligned. I then right clicked...
  7. Salthead

    Displaying Date from a passed parameter in a certain format

    I am writing an ASP.NET application that passes two dates to a Crystal Report. The dates are passed to create start and end dates for selection of records, and to also display this date range at the top of each page in MM/DD/CCYY order. I developed this app on my laptop, and everything was...

Part and Inventory Search

Back
Top