Expression Builder

vand_uk

Registered User.
Local time
Today, 16:11
Joined
Aug 26, 2004
Messages
32
Im using the expression builder and the expression i have works fine. It works of a specific form but i want it to be universal to any form thats current that has the field on. so i need some sort of [*currently open form*] or something like that. Can anyone help?????

Thanks
 
Maybe someone else can explain how to do this via the expression builder but the only way I know would be to use code.

A function with a form as argument and call it using 'me' something like:

Function Myfunction (frmForm as form)
<do you manipulation here in code>
End Function


Then call the function from the appropriate event on any control as

Call Myfunction (Me)

You'll need to provide more details if you want something more specific.

HTH.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom