LibreOffice SymbolLibreOffice Symbol

¡Necesitamos su ayuda!

Objeto ThisDatabaseDocument

ThisDatabaseDocument addresses the active Base document whose properties can be read and set, and whose methods can be called.

ThisDatabaseDocument devuelve un objeto del tipo com.sun.star.sdb.XOfficeDatabaseDocument.

Sintaxis:


       ThisDatabaseDocument
    

When the active window does not relate to a Base document, ThisDatabaseDocument returns Nothing.

Icono de consejo

When the active window is the Basic IDE, ThisDatabaseDocument object returns the database owning the current script.


Ejemplo:

Opening current database "formName" and maximizing it can be achieved as shown:


        Dim form As Object
        ThisDatabaseDocument.CurrentController.connect("","")
        form = ThisDatabaseDocument.FormDocuments.getByName("formName").open )
        form.currentController.frame.ContainerWindow.IsMaximized = True