Calls to function A executes function B

Hi,

having a script Library named UIAppros. Inside, there’s 2 functions

function A()

'some code

end function

function B()

'some code

End Function

Having a form : Appro

in the global section there is

Use “UIAppros”

and 2 actions :

Action A :

Sub Click(Source As Button)

Call A()

End Sub

Action B :

Sub Click(Source As Button)

Call B()

End Sub

Something not too complex at all

when inside an Appro doc, if i click Action A then Notes executes the B() function

if i click Action B then it executes B() function

it happens in the win32 and linux client

A workaround is to recompile all lotuscript and then it works correctly, but if the form is modified and saved again, the problem reappear

i don’t want to recompile all lotusscript each time i change the color of a cell in the form !! :))

any idea?

Regards