12358
Commento: update acl
|
10230
ready for #70
|
Le cancellazioni sono segnalate in questo modo. | Le aggiunte sono segnalate in questo modo. |
Linea 1: | Linea 1: |
## page was renamed from Fcm/Edizione/HowTo6 #acl GruppoAdmin:admin,read,write,revert GruppoOperatori:admin,read,write,revert GruppoEditori:read,write,revert CristianoLuinetti:admin,read,write,revert MarcoBuono:admin,read,write,revert AldoLatino:admin,read,write,revert GruppoFcm:read,write,revert -All:read -Known:read |
#acl GruppoAdmin:admin,read,write,revert GruppoOperatori:admin,read,write,revert GruppoEditori:read,write,revert GruppoFcm:read,write,revert palombo:admin,read,write,revert new.life:admin,read,write,revert paolettopn:admin,read,write,revert Known:read All:read |
Linea 4: | Linea 4: |
= Testo inglese = LibreOffice Part 23: Base Form Enhancements with Macros by Elmer Perry For the previous four parts of this series, we have slowly built a database document using LibreOffice's Base module. We have a database with forms to enter our data, and queries and reports for extracting the data. We now have a usable document for recording our book library. However, our current design has one flaw we need to overcome. If we need to enter a new author or media type while we are in the books form, we have to close the book form and open one of the others. If we could enter new authors and media types directly from the books form, it would behave more like an application and make data entry even easier. We can accomplish this through a few short macros. The LibreOffice Basic language is very similar to other Basic languages, such as Visual Basic for Applications. To manipulate the underlying LibreOffice document, we access the Uno framework controlling the document. The Uno framework is quite complex, but I will explain, as best I can, the properties and objects we will use. The goal is not to teach you how to write LibreOffice macros, but how you can use them. Macro Security and Options While macros allow us to do cool things in our documents, they can also cause problems. Some people use macros to compromise other people's systems, therefore, we need to take a few minutes to talk about macro security. Whether you are running LibreOffice on Linux, Mac, or Windows, malicious code in a macro can compromise your data and possibly your entire system. Macro security in LibreOffice is simple. Tools > Options opens the Options dialog for LibreOffice. Under LibreOffice, select Security. Click on the Macro Security button to pop up the macro security options. You have four options. Never use the Low security option – it will run macros without asking you. I recommend the Medium security level. With this level, you are prompted whether to run the macros when you open a document containing macros. The High and Very High options require a certificate or folder you designate as trusted. While this is great, I believe nothing trumps the instincts of the user. You usually know whether you were expecting a document to contain macros. When in doubt, click No. Click OK to save your choice and OK to close the options dialog. Now, on to the fun stuff. The Macros We will write four macros for our database document. Three will deal with opening forms, and the last will update the list boxes for authors and media types. The general idea behind macros is to accomplish tasks that are not built into the program, or to simplify complex tasks. Our macros really accomplish both, as we will simplify the tasks of adding authors and media types and provide functionality not built into the program. Before we can begin to write our macros, we need a container to hold them. Macros are contained in a module. Modules can live in the program itself or within a document. Since our macros are specific to our database file, we will embed them in the document. Macros embedded in a document are available only when the document is loaded. Macros contained in the program are available as long as the program is running. Tools > Macros > Organize Macros > LibreOffice Basic. The LibreOffice Basic Macros dialog pops up. Select book.odb from the Macro from-list. Click the New button. A dialog pops up asking you for a name for the module. Name it FormCalls. Click OK. This brings up the LibreOffice macro editor. The macro comes with a default main subroutine. We will not use this subroutine. Highlight Sub main and End Sub and press the backspace key to delete them. Our first macro is a generalized subroutine for opening a form. A generalized subroutine is written for reuse. We will call this routine twice from other routines we write. Type this subroutine into the editor: {{{ Sub OpenAForm (FormName as String) Dim GetForm as Object GetForm = ThisDatabaseDocument.FormDocuments.GetByName(FormName) GetForm.Open End Sub }}} The first line of the subroutine is called the signature. The signature determines how the subroutine is called. A signature starts with the keyword Sub, which defines this call as a subroutine. Next, the name of the subroutine. In our case, OpenAForm is the name of the subroutine. Finally in the parenthesis, we have the arguments used when calling this subroutine. In our case, we have a variable named FormName which is a type String. In the second line of the subroutine, Dim is another keyword. Dim initializes a variable as a type, and, optionally, a value. We define a variable named GetForm as a type Object. The third line assigns a value to the variable GetForm through a chain of commands in the Uno framework. ThisDatabaseDocument refers to the currently open database document. In our case, book.odb. FormDocuments is a collection of all the forms in the document. Finally, GetByName retrieves a specific form object from the collection. Notice, we pass the variable FormName from the signature to this method. Once the call is complete, the variable GetForm is the object of the form name passed to the subroutine. The fourth line calls the Open method of the form. On the fifth line, we tell Basic this is the end of the subroutine with the command End Sub. We will call the OpenAform subroutine twice. Once to open the authors form, and once to open the media form. Add these two subroutines to your editor: {{{ Sub OpenAuthorsForm(oEv As Object) OpenAForm("Authors") End Sub Sub OpenMediaForm(oEv As Object) OpenAForm("Media") End Sub }}} The signature on these two subroutines are a little different. Since we will call them from a control within a form, we need to pass the object making the call as an argument, even though we do not use it. The argument oEv is a reference to the object making the call. We will use this to our advantage later, in the last subroutine, but here we do it because it is required. These two subroutines are pretty simple. We just make a call to OpenAForm passing the name of the form we want to open, Authors or Media. The final subroutine deals with our problem of refreshing the data in the list boxes for authors and media when we add authors or media using the two subroutines above: {{{ Sub ListRefresh(oEv as Object) oEv.source.model.Refresh End Sub }}} Once again, since we will call this subroutine from a control, we need a reference to the control making the call. However, this time we will actually use the object. This subroutine makes a method call to the underlying model of the list box and refreshes the data in the list, thus updating our list of authors or media types. Save your module and close the Basic editor. Making Connections to Macros At this point, our macros do nothing. We need to connect them to objects in our form to activate them when needed. First, we will connect the open form subroutines to buttons in our form, and then we will connect the ListRefresh to the list boxes. In the database pane, click on Forms. Right-click the Books form and select edit. Add two push buttons to the form, one under the Authors table and another under the Media table. Right-click the button under the Authors table and select Control to bring up the buttons properties dialog. On the General tab, change the name to AddAuthors and the Label to Add Authors. On the Events tab, click the ellipses (…) button next to Execute Action – which brings up the Assign Action dialog. Click the Macro button to bring up the Macro Selector dialog. In the tree list under Library, select book.odb > Standard > FormCalls. Select OpenAuthorsForm from the Macro Name list and click OK. Click OK to close the Assign Action dialog. Close the buttons properties dialog. Do the same with the button under the Media table, only name it AddMedia, make the label Add Media Type, and assign the macro OpenMediaForm to the Execute Action event. Finally, we need to add the refresh subroutine to our list boxes. Right-click the Authors column in the authors table and select Column. On the Events tab, click the ellipse (…) button beside “When receiving focus”. In the Assign Action button, use the Macro button to assign the ListRefresh macro to the action. This will cause the list to update data from the Authors table when you click on a list box in the column. Do the same for the Media column in the media table. Save your changes to the Books form and close it. Testing Your Changes Any time we make changes to our forms, we will want to test them and make sure we got everything right, especially in cases where we have used macros. One simple typo could cause things to not work. Double-click the Books form to open it. Add a new book with an author and media type you have not added already. Click the Add Authors button to make sure it opens the form. Add some authors. Close the Authors form. Click on the authors dropdown list box and verify that the authors you added are there. Do the same test with the Add Media Type button and listbox. Final Thoughts and References Again, I would like to emphasize that writing macros in LibreOffice Basic is complex. Documentation is pretty sparse, but it is out there. If you are interested in taking up the challenge, here are some references to get you started: LibreOffice Basic Guide: http://wiki.documentfoundation.org/images/d/dd/BasicGuide_OOo3.2.0.odt Andrew Pitonyak's OpenOffice Macro Information: http://www.pitonyak.org/oo.php You can find the macros used in this How-To on pastebin.com at http://pastebin.com/MU2Ztizi Next time, we will move on to another part of the LibreOffice suite and explore the Math module. |
|
Linea 6: | Linea 73: |
How to Libre Office – Part 2 di Elmer Perry |
|
Linea 10: | Linea 74: |
Nell'ultimo pezzo vi ho introdotto ai diversi moduli di LibreOffice. Oggi, voglio mostrarvi la configurazione base e i metodi di formattazione manuale per il modulo Writer. Il modulo Writer vi permette di creare documenti di testo formattati. Potete usarlo (una panoramica qui sotto) per cose semplici come una lettera o un diario, o per scritti più complessi come un manoscritto o una tesi. |
== Note alla traduzione == |
Linea 13: | Linea 76: |
Per prima cosa diamo un'occhiata alla finestra Writer. Partendo dall'alto, abbiamo la barra del menu. Questa vi da accesso ai diversi strumenti e alle azioni che potete utilizzare su un documento. Sotto, si trova la toolbar standard. Questa vi consente un accesso rapido ai comandi più comuni – come apri, salva, stampa. Accanto abbiamo la toolbar di ricerca. Sotto la toolbar standard, invece, trovate la toolbar per la formattazione – contiene le icone dei comandi di formattazione più usati. La toolbar è sensibile al contesto, e cambierà quando lavorate con elementi particolari come le immagini. Se avete i suggerimenti attivi, portando il puntatore del mouse sulle icone nella toolbar vi verrà mostrata una descrizione pop-up di quello che fa l'icona selezionata. Sotto la toolbar di formattazione e sulla sinistra, abbiamo i due righelli, orizzontale e verticale. Questi sono delle linee guida che per aiutarvi quando stendete un documento. Per le impostazioni di default pensate per la lingua inglese, il display dei righelli è in pollici. Ci sono due modi per cambiare queste unità di misurazione. Click-destro in un punto qualunque dei righelli (immagine a sinistra) e Writer vi mostrerà un menu pop-up con le differenti unità di misura disponibili. Questo metodo funziona bene quando avete bisogno di cambiare solo nel documento corrente. Invece se volete un'unità di misura diversa come default, dovete cambiarla dalle Opzioni. Andate a Strumenti> Opzioni> LibreOffice Writer> Vista. Qui potete impostare le opzioni di default per i due righelli, o decidere di lavorare senza di essi. |
|
Linea 16: | Linea 77: |
Adesso, scriveremo una semplice lettera e vi mostrerò come formattare manualmente i vari paragrafi della lettera. Aprite LibreOffice e iniziate un nuovo documento di Writer. Posizioneremo la data odierna all'inizio del testo, e l'allineeremo sulla sinistra. Andate a Inserisci> Campo> Data. Vi verrà data quest'ultima nel formato di default (GG/MM/AA). Vedrete la data evidenziata in grigio. Questo significa che è un capo che avete inserito nel documento. Cambiamo la formattazione della nostra data. Doppio click sulla data, e una finestra di dialogo (sopra) si aprirà mostrandovi le diverse opzioni disponibili. Selezionate quella che volete e premete OK. Dobbiamo allineare a destra la nostra data, quindi troviamo le icone di allineamento sulla toolbar di formattazione e clickiamo sull'icona desiderata. La nostra data si sposterà verso il margine destro. Usate il tasto Fine sulla vostra tastiera per muovervi alla fine della linea corrente, e premete Invio. Non vogliamo restare allineati a sinistra per il nuovo paragrafo, quindi premete l'icona allineamento a sinistra per spostare l'inizio del paragrafo sulla sinistra. Inserite i vostri saluti introduttivi e premete Invio. |
= Revisione = |
Linea 19: | Linea 79: |
Per i paragrafi centrali della nostra lettera, vogliamo far rientrare la prima linea di ciascun poragrafo. Se non vi interessa l'accuratezza più totale potete applicare il rientrato usando il righello orizzontale. Vedrete che ci sono due triangoli sul margine sinistro del righello (sopra a destra e a sinistra), uno punta verso l'alto, uno verso il basso. Il triangolo basso – quello che punta verso l'alto- serve per regolare manualmente il rientrato sinistro per tutto il paragrafo. Vedrete che un triangolo uguale si trova sulla destra – serve per regolare il rientrato destro per il paragrafo. Il triangolo alto sulla sinistra - quello che punta verso il basso- regola il rientrato solo per la prima linea del paragrafo. Clickate sul triangolo alto e spostatelo su 0,5'' (1.27 cm). | |
Linea 21: | Linea 80: |
Se avete bisogno di capoversi più precisi, potete accedere alla finestra dello stile del paragrafo (sotto a sinistra) facendo doppio click sulla parte grigia del righello orizzontale. Potete accedere alla stessa finestra anche andando a Formato> Paragrafo. Qui avete diverse opzioni per formattare il vostro paragrafo. Oggi quello che ci interessa è solo il rientrato della prima riga, quindi cambiate questo parametro a 0,5'' (1,27 cm). Clickate OK. Potrete notare che il triangolo alto (rientrato della prima riga, mostrato sotto) ha cambiato la sua posizione in quella che voi gli avete assegnato nella finestra. | == Note alla revisione == |
Linea 23: | Linea 82: |
Adesso possiamo scrivere il nostro paragrafo. Inserite il primo e premete Invio. Vedrete che quello successivo ha lo stesso rientro. Writer userà questo stile di paragrafo finchè non gli diremo di fare diversamente. | |
Linea 25: | Linea 83: |
Dopo avere inserito il corpo della nostra lettera, vogliamo aggiungere una chiusa, ma non vogliamo che sia come il resto del testo. Usando di nuovo il metodo manuale o la finestra, cambiamo il rientrato in 3'' (7,62 cm). Adesso inserite la vostra conclusione e premete Invio. Invece di scrivere il vostro nome, usiamo il campo di nome per inserirlo. Questo funziona solo se avete riempito i dati Utenti nelle opzioni: Inserisci> Campi> Autore. La vostra lettera è pronta, e potete stamparla e spedirla. Mentre la formattazione manuale è congeniale per gli scritti brevi, quelli più estesi hanno bisogno di un maggiore controllo. Se decidete di cambiare la formattazione di un paragrafo in un testo lungo, prendere paragrafo per paragrafo e farlo manualmente è noioso. In questo tipo di testi, abbiamo bisogno di un modo per cambiare le impostazioni di tutti i paragrafi in una sola volta. La prossima volta, parleremo di come usare gli Stili per farlo. == Note alla traduzione == = Revisione = How to Libre Office – Part 2 di Elmer Perry Nell'ultimo articolo vi ho parlato dei diversi moduli di LibreOffice. Oggi voglio mostrarvi la configurazione base e i metodi di formattazione manuale per il modulo Writer. Il modulo Writer vi permette di creare documenti di testo formattati. Potete usarlo (una panoramica qui sotto) per cose semplici come una lettera o un diario, o per scritti più complessi come un manoscritto o una tesi. Per prima cosa diamo un'occhiata alla finestra Writer. Partendo dall'alto, abbiamo la barra del menu. Questa vi da accesso ai diversi strumenti e alle azioni che potete utilizzare su un documento. Sotto, si trova la toolbar standard. Questa vi consente un accesso rapido ai comandi più comuni – come apri, salva, stampa. Accanto abbiamo la toolbar di ricerca. Sotto la toolbar standard, invece, trovate la toolbar per la formattazione – contiene le icone dei comandi di formattazione più usati. La toolbar è sensibile al contesto e cambierà quando lavorate con elementi particolari come le immagini. Se avete i suggerimenti attivi, portando il puntatore del mouse sulle icone nella toolbar vi verrà mostrata una descrizione pop-up di quello che fa l'icona selezionata. Sotto la toolbar di formattazione e sulla sinistra, abbiamo i due righelli, orizzontale e verticale. Questi sono delle linee guida che per aiutarvi quando stendete un documento. Per le impostazioni di default pensate per la lingua inglese, il display dei righelli è in pollici. Ci sono due modi per cambiare queste unità di misurazione. Fate clic col pulsante destro in un punto qualunque dei righelli (immagine a sinistra) e Writer vi mostrerà un menu pop-up con le differenti unità di misura disponibili. Questo metodo funziona bene quando avete bisogno di cambiarle solo nel documento corrente. Invece se volete un'unità di misura diversa come default, dovete cambiarla dalle Opzioni. Andate su Strumenti> Opzioni> LibreOffice Writer> Vista. Qui potete impostare le opzioni di default per i due righelli o decidere di lavorare senza di essi. Adesso scriveremo una semplice lettera e vi mostrerò come formattare manualmente i vari paragrafi della lettera. Aprite LibreOffice e iniziate un nuovo documento di Writer. Posizioneremo la data odierna all'inizio del testo e l'allineeremo sulla sinistra. Andate su Inserisci> Campo> Data. Vi verrà data quest'ultima nel formato di default (GG/MM/AA). Vedrete la data evidenziata in grigio. Questo significa che è un campo che avete inserito nel documento. Cambiamo la formattazione della nostra data. Doppio clic sulla data e una finestra di dialogo (sopra) si aprirà mostrandovi le diverse opzioni disponibili. Selezionate quella che volete e premete OK. Dobbiamo allineare a destra la nostra data quindi troviamo le icone di allineamento sulla toolbar di formattazione e facciamo clic sull'icona desiderata. La nostra data si sposterà verso il margine destro. Usate il tasto Fine sulla vostra tastiera per muovervi alla fine della linea corrente, e premete Invio. Non vogliamo restare allineati a sinistra per il nuovo paragrafo, quindi premete l'icona allineamento a sinistra per spostare l'inizio del paragrafo sulla sinistra. Inserite i vostri saluti introduttivi e premete Invio. Per i paragrafi centrali della nostra lettera vogliamo far rientrare la prima linea di ciascun poragrafo. Se non vi interessa l'accuratezza più totale potete applicare il rientro usando il righello orizzontale. Vedrete che ci sono due triangoli sul margine sinistro del righello (sopra a destra e a sinistra), uno punta verso l'alto, uno verso il basso. Il triangolo in basso – quello che punta verso l'alto- serve per regolare manualmente il rientro sinistro per tutto il paragrafo. Vedrete che un triangolo uguale si trova sulla destra – serve per regolare il rientro destro per il paragrafo. Il triangolo in alto sulla sinistra - quello che punta verso il basso- regola il rientro solo per la prima linea del paragrafo. Fate clic sul triangolo alto e spostatelo su 0,5'' (1.27 cm). Se avete bisogno di capoversi più precisi potete accedere alla finestra dello stile del paragrafo (sotto a sinistra) facendo doppio clic sulla parte grigia del righello orizzontale. Potete accedere alla stessa finestra anche andando su Formato> Paragrafo. Qui avete diverse opzioni per formattare il vostro paragrafo. Oggi quello che ci interessa è solo il rientro della prima riga, quindi cambiate questo parametro a 0,5'' (1,27 cm). Fate clic su OK. Potrete notare che il triangolo alto (rientro della prima riga, mostrato sotto) ha cambiato la sua posizione in quella che voi gli avete assegnato nella finestra. Adesso possiamo scrivere il nostro paragrafo. Inserite il primo e premete Invio. Vedrete che quello successivo ha lo stesso rientro. Writer userà questo stile di paragrafo finchè non gli diremo di fare diversamente. Dopo avere inserito il corpo della nostra lettera, vogliamo aggiungere una formula di chiusura, ma non vogliamo che sia come il resto del testo. Usando di nuovo il metodo manuale o la finestra, cambiamo il rientrato in 3'' (7,62 cm). Adesso inserite la vostra conclusione e premete Invio. Invece di scrivere il vostro nome usiamo il campo nome per inserirlo. Questo funziona solo se avete riempito i dati Utenti nelle opzioni: Inserisci> Campi> Autore. La vostra lettera è pronta e potete stamparla e spedirla. Mentre la formattazione manuale è congeniale per gli scritti brevi, quelli più estesi hanno bisogno di un maggiore controllo. Se decidete di cambiare la formattazione di un paragrafo in un testo lungo, prendere paragrafo per paragrafo e farlo manualmente è noioso. In questo tipo di testi abbiamo bisogno di un modo per cambiare le impostazioni di tutti i paragrafi in una sola volta. La prossima volta, parleremo di come usare gli Stili per farlo. == Note alla revisione == |
Testo inglese
LibreOffice Part 23: Base Form Enhancements with Macros
by Elmer Perry
For the previous four parts of this series, we have slowly built a database document using LibreOffice's Base module. We have a database with forms to enter our data, and queries and reports for extracting the data. We now have a usable document for recording our book library. However, our current design has one flaw we need to overcome. If we need to enter a new author or media type while we are in the books form, we have to close the book form and open one of the others. If we could enter new authors and media types directly from the books form, it would behave more like an application and make data entry even easier. We can accomplish this through a few short macros. The LibreOffice Basic language is very similar to other Basic languages, such as Visual Basic for Applications. To manipulate the underlying LibreOffice document, we access the Uno framework controlling the document. The Uno framework is quite complex, but I will explain, as best I can, the properties and objects we will use. The goal is not to teach you how to write LibreOffice macros, but how you can use them. Macro Security and Options
While macros allow us to do cool things in our documents, they can also cause problems. Some people use macros to compromise other people's systems, therefore, we need to take a few minutes to talk about macro security. Whether you are running LibreOffice on Linux, Mac, or Windows, malicious code in a macro can compromise your data and possibly your entire system.
Macro security in LibreOffice is simple. Tools > Options opens the Options dialog for LibreOffice. Under LibreOffice, select Security. Click on the Macro Security button to pop up the macro security options. You have four options. Never use the Low security option – it will run macros without asking you. I recommend the Medium security level. With this level, you are prompted whether to run the macros when you open a document containing macros. The High and Very High options require a certificate or folder you designate as trusted. While this is great, I believe nothing trumps the instincts of the user. You usually know whether you were expecting a document to contain macros. When in doubt, click No. Click OK to save your choice and OK to close the options dialog. Now, on to the fun stuff. The Macros
We will write four macros for our database document. Three will deal with opening forms, and the last will update the list boxes for authors and media types. The general idea behind macros is to accomplish tasks that are not built into the program, or to simplify complex tasks. Our macros really accomplish both, as we will simplify the tasks of adding authors and media types and provide functionality not built into the program. Before we can begin to write our macros, we need a container to hold them. Macros are contained in a module. Modules can live in the program itself or within a document. Since our macros are specific to our database file, we will embed them in the document. Macros embedded in a document are available only when the document is loaded. Macros contained in the program are available as long as the program is running. Tools > Macros > Organize Macros > LibreOffice Basic. The LibreOffice Basic Macros dialog pops up. Select book.odb from the Macro from-list. Click the New button. A dialog pops up asking you for a name for the module. Name it FormCalls. Click OK. This brings up the LibreOffice macro editor. The macro comes with a default main subroutine. We will not use this subroutine. Highlight Sub main and End Sub and press the backspace key to delete them. Our first macro is a generalized subroutine for opening a form. A generalized subroutine is written for reuse. We will call this routine twice from other routines we write. Type this subroutine into the editor:
Sub OpenAForm (FormName as String) Dim GetForm as Object GetForm = ThisDatabaseDocument.FormDocuments.GetByName(FormName) GetForm.Open End Sub
The first line of the subroutine is called the signature. The signature determines how the subroutine is called. A signature starts with the keyword Sub, which defines this call as a subroutine. Next, the name of the subroutine. In our case, OpenAForm is the name of the subroutine. Finally in the parenthesis, we have the arguments used when calling this subroutine. In our case, we have a variable named FormName which is a type String. In the second line of the subroutine, Dim is another keyword. Dim initializes a variable as a type, and, optionally, a value. We define a variable named GetForm as a type Object. The third line assigns a value to the variable GetForm through a chain of commands in the Uno framework. ThisDatabaseDocument refers to the currently open database document. In our case, book.odb. FormDocuments is a collection of all the forms in the document. Finally, GetByName retrieves a specific form object from the collection. Notice, we pass the variable FormName from the signature to this method. Once the call is complete, the variable GetForm is the object of the form name passed to the subroutine. The fourth line calls the Open method of the form. On the fifth line, we tell Basic this is the end of the subroutine with the command End Sub. We will call the OpenAform subroutine twice. Once to open the authors form, and once to open the media form. Add these two subroutines to your editor:
Sub OpenAuthorsForm(oEv As Object) OpenAForm("Authors") End Sub Sub OpenMediaForm(oEv As Object) OpenAForm("Media") End Sub
The signature on these two subroutines are a little different. Since we will call them from a control within a form, we need to pass the object making the call as an argument, even though we do not use it. The argument oEv is a reference to the object making the call. We will use this to our advantage later, in the last subroutine, but here we do it because it is required. These two subroutines are pretty simple. We just make a call to OpenAForm passing the name of the form we want to open, Authors or Media. The final subroutine deals with our problem of refreshing the data in the list boxes for authors and media when we add authors or media using the two subroutines above:
Sub ListRefresh(oEv as Object) oEv.source.model.Refresh End Sub
Once again, since we will call this subroutine from a control, we need a reference to the control making the call. However, this time we will actually use the object. This subroutine makes a method call to the underlying model of the list box and refreshes the data in the list, thus updating our list of authors or media types. Save your module and close the Basic editor.
Making Connections to Macros
At this point, our macros do nothing. We need to connect them to objects in our form to activate them when needed. First, we will connect the open form subroutines to buttons in our form, and then we will connect the ListRefresh to the list boxes. In the database pane, click on Forms. Right-click the Books form and select edit. Add two push buttons to the form, one under the Authors table and another under the Media table. Right-click the button under the Authors table and select Control to bring up the buttons properties dialog. On the General tab, change the name to AddAuthors and the Label to Add Authors. On the Events tab, click the ellipses (…) button next to Execute Action – which brings up the Assign Action dialog. Click the Macro button to bring up the Macro Selector dialog. In the tree list under Library, select book.odb > Standard > FormCalls. Select OpenAuthorsForm from the Macro Name list and click OK. Click OK to close the Assign Action dialog. Close the buttons properties dialog. Do the same with the button under the Media table, only name it AddMedia, make the label Add Media Type, and assign the macro OpenMediaForm to the Execute Action event. Finally, we need to add the refresh subroutine to our list boxes. Right-click the Authors column in the authors table and select Column. On the Events tab, click the ellipse (…) button beside “When receiving focus”. In the Assign Action button, use the Macro button to assign the ListRefresh macro to the action. This will cause the list to update data from the Authors table when you click on a list box in the column. Do the same for the Media column in the media table. Save your changes to the Books form and close it.
Testing Your Changes
Any time we make changes to our forms, we will want to test them and make sure we got everything right, especially in cases where we have used macros. One simple typo could cause things to not work. Double-click the Books form to open it. Add a new book with an author and media type you have not added already. Click the Add Authors button to make sure it opens the form. Add some authors. Close the Authors form. Click on the authors dropdown list box and verify that the authors you added are there. Do the same test with the Add Media Type button and listbox. Final Thoughts and References
Again, I would like to emphasize that writing macros in LibreOffice Basic is complex. Documentation is pretty sparse, but it is out there. If you are interested in taking up the challenge, here are some references to get you started: LibreOffice Basic Guide: http://wiki.documentfoundation.org/images/d/dd/BasicGuide_OOo3.2.0.odt Andrew Pitonyak's OpenOffice Macro Information: http://www.pitonyak.org/oo.php You can find the macros used in this How-To on pastebin.com at http://pastebin.com/MU2Ztizi Next time, we will move on to another part of the LibreOffice suite and explore the Math module.
Traduzione italiana
Note alla traduzione
Revisione
Note alla revisione