getting crazy with oprion buttons in journals

  • Thread starter Thread starter Gnappo
  • Start date Start date
G

Gnappo

Hi all.

I'm trying to manage some stupid option button in a journal user-built form.

I added 2 option button controls within a frame and I used the GetInspector
to transfer their value onto 2 variables.

I'm then trying to intercept the control status-change.

If the 2 opt controls are NOT assigned to any field, VBA intercepts the
optButton_Click as well as the optButton_Change
BUT
If I assign both controls to a Yes/No field, there's no way to detect the
control change: no Click and no Change event is grabbed.

Is anybody who can help me?

Thanks in advance

Gnapps
 
Sounds like you're looking at the wrong event. Outlook forms never fire any
Change event. Unbound controls fire a Click event. For controls bound to a
property, the event is CustomPropertyChange or PropertyChange. See
http://www.slipstick.com/dev/propsyntax.htm for syntax details.
 

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

Back
Top