Program.cs コード:
namespace _1
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
///
public static Form2 form2;
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
form2 = new Form2();
}
}
Form1 コード:
Program.form2.pictureBox1.Refresh();
エラー:
Object reference not set to an instance of an object.
エラーが発生した理由がわからないので、Google に問い合わせましたが、何の助けもありませんでした。ご協力いただきありがとうございます。