cancel
Showing results for 
Search instead for 
Did you mean: 

U2lcvr.dll - Missing

Former Member
0 Kudos

We have a report that is using the HrsMinsSecs formula and is giving the error message 'UFL u2lcvr.dll that implements this function is missing.' What is this dll, where can I find it and where should it go? Thanks!

Accepted Solutions (1)

Accepted Solutions (1)

former_member260594
Active Contributor
0 Kudos

Colin,

I've never heard of this UFL before. Are you sure it isn't a custom UFL that someone developed for you?

Either way it should be placed in \WINNT(Windows)\SYSTEM directory.

As wel I'm not sure what the UFL does but sounds like it may output a time in the hh:mm:ss format. In CR9 and above you could create a custom function that does that instead of a UFL. The syntax for the custom function would be;

Function( datetimevar start, datetimevar end)

numbervar x:= datediff( 's', start, end);

numbervar hh;

numbervar mm;

numbervar ss;

hh:= x/3600;

mm:= remainder( x/ 3600) / 60;

ss:= remainder ( remainder ( x, 3600), 60);

totext ( abs( hh), 0) & ' : ' &

totext ( abs( mm), 0) & ' : ' &

totext ( abs( ss), 0)

Answers (0)