第一個問題也好辦,建兩個form。
form1放一個button,裡面寫入
private void Send_Click(object sender, System.EventArgs e)
{
Form2 temp = new Form2();
temp.HeightMax=134;
temp.WidthMax=150;
temp.ScrollShow();
}
form2代碼如下;
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;