Hi Drew,

> ThisDatabaseDocument.Forms( "my beautiful form").open

Played with this ...

First, "Forms" doesn't exist, only FormDocuments, so we would have
  ThisDatabaseDocument.FormsDocuments( "my beautiful form" ).open

Then, the Basic runtime is stupid enough to interpret the form name as
*integer* value, using XIndexAccess.getByIndex, instead of
XNameAccess.getByName (this deserves an issue, IMO). So, we have
  ThisDatabaseDocument.FormsDocuments.getByName( _
    "my beautiful form" ).open

Other than that ... a fix is nearly done in CWS dba30f, which might or
might not hit 3.0.

Ciao
Frank


-- 
- Frank Schönheit, Software Engineer         [EMAIL PROTECTED] -
- Sun Microsystems                      http://www.sun.com/staroffice -
- OpenOffice.org Base                       http://dba.openoffice.org -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to