Misael Santos wrote: > Hi everybody, > I'm trying to access some OO objects from a Forms (Oracle) application using > Native OLE Automation. > It works fine for MS Office objects, using strings like "Excel.Sheet", the > OLE programmatic Identifiers. > The question is, how do I get the strings for reference OO objects like a > sheet? It's possible? > I need to run macros and get their results from the open office calc.
The whole OOo API is accessible through OLE automation, only exception handling doesn't work IIRC. Using OLE automation means using the IDispatch interface of COM objects. Usually this is a PITA except when you have a programming language that interprets this interface and presents it to its users in an easier way like VBA does. A term like "Excel.Sheet" seems to indicate that you have such a language. Of course the OOo API is different than the MSO API, but describing it is nothing you can do in a single mail. Best regards, Mathias -- Mathias Bauer - OpenOffice.org Application Framework Project Lead Please reply to the list only, [EMAIL PROTECTED] is a spam sink. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
