Re: SQL UPDATE auf Knopfdruck ausführen
Verfasst: So, 22.12.2013 13:08
Hi,
versuch mal dieses Und binde es an das Ereignis "Aktion ausführen" des Buttons
Gruß R
versuch mal dieses
Code: Alles auswählen
Sub update_false(event)
oForm = event.source.model.parent
oConnection = oForm.activeconnection
SQL_Statement = oConnection.CreateStatement
sSQL = "UPDATE ""Table1"" SET ""b"" = FALSE"
SQL_Statement.executeUpdate(sSQL)
oForm.reload
end Sub
Gruß R