Private Sub Command1_Click()Form2.Show Form2.Caption = Text2.Text & "的调查表" Form2.Print "姓名:" & Text2.Text '梦想 If Check1.Value = 1 Then Form2.Print "梦想:" & Check1.CaptionEnd If If Check2.Value = 1 Then Form2.Print "梦想:" & Check2.CaptionEnd If If Check3.Value = 1 Then Form2.Print "梦想:" & Text1.TextEnd If '性别If Option1.Value = True Then Form2.Print "性别:" & Option1.CaptionEnd If If Option2.Value = True Then Form2.Print "性别:" & Option2.CaptionEnd If End Sub Private Sub Form_Load()'作者:刘金玉'初始化form1窗体标题Form1.Caption = "调查表" End Sub