private sub form1_resize()
  if me.scalewidth<200
     me.scalewidth=200
  endif
  if me.scaleheight<200
     me.scaleheight=200
  end if
end sub
     

解决方案 »

  1.   

    : proking(小卢
    好像不行啊 
      

  2.   

    : proking(小卢
    好像不行啊   
      

  3.   

    你用
    me.Width=4000
    试一下
      

  4.   

    Private Sub Form_Resize()
        If Form1.Width < 4000 Then
            Form1.Enabled = False
            Form1.Width = 4000
            Form1.Enabled = True
        End If
        If Form1.Height < 4000 Then
            Form1.Enabled = False
            Form1.Height = 4000
            Form1.Enabled = True
        End If
    End Sub
      

  5.   

    Private Sub Form_Resize()
        If Form1.Width < 4000 Then
            Form1.Enabled = False
            Form1.Width = 4000
            Form1.Enabled = True
        End If
        If Form1.Height < 4000 Then
            Form1.Enabled = False
            Form1.Height = 4000
            Form1.Enabled = True
        End If
    End Sub