Help with #Name?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Wes Peters

    Help with #Name?

    I have a report that uses a stored procedure as a record source. The stored
    procedure accepts a parameter InspectionDate smalldatetime which it prompts
    for when the report is run. I have a textbox control on the report with the
    control source of:

    =Format([@InspectionDate],"Long Date")

    This works fine on everyone's machine except the person who usually prints
    the report. They get #Name? instead of the date. Any thoughts?

    I've tried replacing the Msowcf.dll file but no luck.

    Thanks,
    Wes


  • john

    #2
    Re: Help with #Name?

    "Wes Peters" <wpeters@gwssi. comschreef in bericht
    news:%LJ%g.5$p4 .13113@sooner.b rightok.net...
    >I have a report that uses a stored procedure as a record source. The
    >stored
    procedure accepts a parameter InspectionDate smalldatetime which it
    prompts
    for when the report is run. I have a textbox control on the report with
    the
    control source of:
    >
    =Format([@InspectionDate],"Long Date")
    >
    This works fine on everyone's machine except the person who usually prints
    the report. They get #Name? instead of the date. Any thoughts?
    >
    I've tried replacing the Msowcf.dll file but no luck.
    Have you tried: =Format([@InspectionDate];"Long Date") ?
    If that's working then I guess it could have something to do with that
    particular user having a different language version than the others...
    john



    Comment

    Working...