Re: [dev] Rudimentary understanding issue

2007-04-26 Thread Bernd Eilers
Bill Gradwohl wrote: [... snip ...] What I'm trying to do is get a map of the API set that shows ALL the methods, properties, etc and how they interconnect. This started when I went looking for the object called "Sheets" as in document.Sheets, and DBG_Methods does indeed reveal that Sheets is a p

Re: [dev] Rudimentary understanding issue

2007-04-20 Thread Cor Nouws
Hi Bill, Bill Gradwohl wrote: [...] What I'm trying to do is get a map of the API set that shows ALL the methods, properties, etc and how they interconnect. This started when I [...] I think it is good to have a look at http://wiki.services.openoffice.org/wiki/Extensions_development and links

Re: [dev] Rudimentary understanding issue

2007-04-20 Thread Bill Gradwohl
On Thu, 2007-04-19 at 14:49 +0200, Jan Navratil wrote: > IIRC this return a currently active document. So, it is supposed Calc to > be open. > I'm experimenting with the API via Basic using a calc sheets macro ability to call the routines. > > When doc is initialized, what object exactly is it

Re: [dev] Rudimentary understanding issue

2007-04-19 Thread Jan Navratil
Bill Gradwohl wrote: I've seen several subroutine examples that all contain the same sequence of opening executable statements when working with a spreadsheet, as does the following example: sub dumpSheets Dim doc as object Dim Sheets As Object Dim SheetNames Dim I As Integer ' Executable st

[dev] Rudimentary understanding issue

2007-04-19 Thread Bill Gradwohl
I've seen several subroutine examples that all contain the same sequence of opening executable statements when working with a spreadsheet, as does the following example: sub dumpSheets Dim doc as object Dim Sheets As Object Dim SheetNames Dim I As Integer ' Executable statements follow: doc=Star