请问feixuehenshui,您知道怎么办吗?我很着急!

解决方案 »

  1.   

    在 SUB FORM-LOAD()中加入ME.HEIGH=SCREEN.SCALEHEIGH
    ME.WIDTH=SCREEN.SCALEWIDTH好久没用VB了,不知道这么写有没有拼错,就是让ME的高等于屏幕的实际高度.
      

  2.   

    over ride form_sizeform1.width = screen.width
    ...
    button1.width = form1.width / 20
    ...
    button1.left = form1.width / 30
    button1.top = form1.top / 30
    ...
    note: if window is minimized the code should error so i think use thisform_size( ... )
    if me.windowstate <> 1 then 'not minimized
    ...............
    endif
      

  3.   

    谢谢legsion,我去试一试,因为我是头一次上这个网站,有很多不明白的地方,请多多关照!:)
      

  4.   

    谢谢JennyVenus的回答,不过,我有点不太明白,你的意思是form上每个控件都要在程序中设置宽度吗?
      

  5.   

    legsion,我还不知道怎么发短消息呢,是在这里面发的吗?
      

  6.   

    sub form_load()Me.Left = 0
    Me.Top = 0
    Me.Height = Screen.Height - 500
    Me.Width = Screen.Widthend
      

  7.   

    to master
    i used do this, i think it was easy to set control's positon then manaul
      

  8.   

    see this string                                                     管理 | 关闭窗口  
     
     
     
      

  9.   

    JennyVenus,我有点不太明白。
      

  10.   

    给分方法:http://www.csdn.net/help/over.asp
      

  11.   

    在load事件中设置窗体的windowstate属性。