Date: prev next · Thread: first prev next last
2019 Archives by date, by thread · List index


Hallo LO-User,

der Fall ist gelöst und ich möchte mich bei euch für die Mühe, die ich euch gemacht habe gleich mal entschuldigen.

Das u.a. Makro funktioniert so wie es da steht ohne Probleme von einem Button im geöffneten Formular aus, wenn man die Aktion nur in das richtige Feld einträgt. Ich hatte nämlich die Funktion versehentlich in das Feld "Taste gedrückt" eingetragen!

Wenn ich die Funktion in das Feld "Maustaste gedrückt" eintrage funktioniert alles einwandfrei.

Vielen Dank noch mal für die Hilfe.


MfG L-H


Sub Fuett_anfuegen

DIM oForm AS OBJECT

DIM oDatasource AS OBJECT
DIM oConnection AS OBJECT
DIM oSQL_Statement AS OBJECT ' das Objekt, das den SQL-Befehl ausführt
DIM stSql AS STRING          ' Text des eigentlichen SQL-Befehls
DIM oResult AS OBJECT        ' Ergebnis für executeQuery
DIM iResult AS INTEGER       ' Ergebnis für executeUpdate

oForm = thisComponent.Drawpage.Forms.getByName("MainForm")

oConnection = oForm.ActiveConnection()

oSQL_Statement = oConnection.createStatement() 'Statementobjekt erzeugen

stSql = "INSERT INTO ""tbl_Fuetterung_Uebergabe"" ( ""StockNr"", ""Datum"", ""Jahr_ID"", ""Futterart_ID"" ) SELECT ""tbl_StockGrunddaten"".""StockNr"", ""tab_Vorg_Fuet"".""Datum"", ""tab_Vorg_Fuet"".""Jahr_ID"", ""tab_Vorg_Fuet"".""Futterart_ID"" FROM ""tab_Vorg_Fuet"", ""tbl_Vorg_Jahr"", ""tbl_Vorg_Futterart"", ""tbl_StockGrunddaten"" WHERE ""tab_Vorg_Fuet"".""Jahr_ID"" = ""tbl_Vorg_Jahr"".""ID"" AND ""tab_Vorg_Fuet"".""Futterart_ID"" = ""tbl_Vorg_Futterart"".""ID"" AND ""tbl_StockGrunddaten"".""Marke"" = TRUE AND ""tbl_StockGrunddaten"".""Abgangsjahr"" = 0;"

iResult = oSQL_Statement.executeUpdate(stSql) 'Anfügeabfrage ausführen.

End Sub




--
Liste abmelden mit E-Mail an: discuss+unsubscribe@de.libreoffice.org
Probleme? https://de.libreoffice.org/hilfe-kontakt/mailing-listen/abmeldung-liste/
Tipps zu Listenmails: https://wiki.documentfoundation.org/Netiquette/de
Listenarchiv: https://listarchives.libreoffice.org/de/discuss/
Datenschutzerklärung: https://www.documentfoundation.org/privacy

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.