getting crazy with oprion buttons in journals

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
 
S

Sue Mosher [MVP-Outlook]

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.
 
Top