0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

access2000 memo

0
Last updated at Posted at 2019-09-29

概要

access2000のメモです。

フォームとテーブル、クエリーの関連付け

フォームのフッターの下、辺りでプロパティを開く。
レコードソースを確認。

スタートアップフォームを回避。

shiftキーを押しながら、ダブルクリック。

レコードセットをxmlで受け取る。

saveして、openする。

テーブルのコピペ。

両方、開いて、ドラッグしてリリース。

フォームの背景。

ピクチャで、画像を指定できる。

フォームのテキストボックスを非表示にする

「可視」を「いいえ」

コンボボックスで、コード化。

表示コントロール: コンボボックス
値集合タイプ: 値リスト
値集合ソース: 1;男;2;女;
連結列: 1
列数: 2
列見出し: はい

どうするバリデーション。

更新前処理のイベントプシージャで、いろいろ、やる。

insert

ボタンのイベントでsqlを発行。

フォームに引数を渡す。

DoCmd.OpenForm "form2", , , , , , "あいうえお"
me.openargsで受け取り。

同じ更新を別のテーブルにも。

更新ボタンを作って、update sqlを発行。

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?