2008/01/01(Tue) 10:45:33 編集(投稿者)
- お願いだから投稿モードを"図表モード"にしてください。
- エラーメッセージは"どの行で出たのか"が大事。出し惜しみしないで。
> using System;
> using System.Collections.Generic;
> using System.ComponentModel;
> using System.Data;
> using System.Drawing;
> using System.Text;
> using System.Windows.Forms;
>
> namespace MyMemo
> {
> public partial class Form2 : Form
> {
> public Form2()
> {
> InitializeComponent();
> }
> private void Form2_Load(object sender, EventArgs e)
> {
> }
> private void button1_Click(object sender, EventArgs e)
> {
> }
> private void textBox1_TextChanged(object sender, EventArgs e)
> {
> }
>
> } /*************************** ココでForm2が終ってますょ? ******************/
>
> public Form1 Form1Instance;//Form1のインスタンス
>...