Forum Discussion

guy_arieli's avatar
guy_arieli
New Contributor
13 years ago

Unknown name

Hi,

I'm trying to call the following Log.Message command:

Call Log.Message (logLine, , 300, , outFile)



I'm getting Unknown name error message.

The logLine and outFile are set from C# dll using the dotNet assembly integeration.

Thanks,

Guy

2 Replies

  • Hi,



    Exactly, how are logLine and outFile initialized and what are their values (you can check this on a breakpoint)?
  • guy_arieli's avatar
    guy_arieli
    New Contributor
    Thank you for the quick replay.

    I found the solution by adding the CStr command to the outFile element:


    Call



     



    Log.Message (logLine, , 300, , CStr(outFile))



    Thanks,

    Guy