Hello,

I want to get the "enable" property value from my text field (for example named
txtText) placed on form on my Calc sheet.

I wrote a simple macro and attached it to "changed" event:

Sub test(Event)

        msgbox(Event.Source.Text)
'OK, I get the text
        msgbox(Event.Source.IsEnabled)
'OK, I get True 
        msgbox(Event.Source.dbg_properties)
'OK, this control has property "Enable"
        Event.Source.Enable = False
'OK, I can assign value, the control now disabled
        msgbox(Event.Source.Enable)
'I got the error: Inadmissible value or data type.Data type mismatch.
        
End Sub


The same behavior is for other control properties returning bool (Visible, 
Editable,
DesignMode) except Lock. The same behavior is for basic dialog controls 
properties.


Now my question: is it the bug or normal behavior?

Best regards

Mindaugas
--
http://www.freemail.lt/

-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted

Reply via email to