Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DoCmd.RunSQL メソッドを使用して、ユーザーがフォームで行うアクションに基づいてレコードを挿入および削除しています。正常に動作しますが、レコードを削除または追加する前に確認を求めます。確認を削除するにはどうすればよいですか。
ちなみにBeforeDelConfirmイベントはDoCmd.RunSQLでは動かないようです。
を使用DoCmd.RunSqlして SQL を実行し、アラートを心配するのではなく、これを使用できます。
DoCmd.RunSql
Dim sql as string Dim dbs as DAO.Database set dbs = CurrentDb() sql = "INSERT INTO table(field1) VALUES(1)" dbs.Execute sql, dbFailOnError dbs.close set dbs = nothing