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.
こんにちは、次のコードでエラーが発生しました。
メソッドRefeshDataGridView()は静的です。別のスレッドで実行してグリッドを更新し、DBテーブルから最新のデータを取得します。メソッドRefeshDataGridView()が使用するため、dataGridView1を静的にしました。このエラーが発生した理由とその解決方法を誰かが説明できますか?
更新: dataGridView1を非静的にすると、エラーはなくなります。しかし、静的メソッドでは使用できませんでした。
dataGridView1はnull。インスタンス化するか、インスタンスをパラメータとしてRefreshDataGridView()に渡す必要があります。
null