Using expression builder object

N

NG

Hi,

I'm developing a wizzard in Access which builds import templates for various
data sources to a fixed set of tables. In step 3 the users must be able to
build an expression ; for instance Left([Fieldx],20) . Now I would like to
have a command button on my form which calls the Access expression builder to
allow the users to use this to build the expression. This expression will
then be stored in a text box linked to the templates table.
Anybody know how to call and use this object from VBA code?
 
A

Arvin Meyer [MVP]

DoCmd.RunCommand acCmdInvokeBuilder

I think there may be another argument, but try using the above.
 
N

NG

thx for your reply, but the problem is the InvokeBuilder command isn't
available when running the form (error 2046), so I'll probably have to write
my own function builder...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top