Link to home
Start Free TrialLog in
Avatar of opike
opike

asked on

Best method for displaying text to the screen in an openoffice macro

I have the following code where I'm trying to figure out all the methods that are available from a chart object. The problem is that the for a chart there are so many methods that the text fills up the MsgBox and gets cut off and there is no scroll bar.

SheetCount = ThisComponent.Sheets.getCount
oSheet=ThisComponent.Sheets(4)
oChart = oSheet.Charts(0).EmbeddedObject
MsgBox oChart.dbg_methods

What would be a better way for me to display the output of oChart.dbg_methods?
ASKER CERTIFIED SOLUTION
Avatar of ltlbearand3
ltlbearand3
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of opike
opike

ASKER

Thanks - I ended up installing xray but your method may come in handy in other situations.