Private Sub Command0_Click()
Dim frm As Form
Dim L As Integer
Dim T As Integer
DoCmd.OpenForm "窗体1", acNormal
Set frm = Forms("窗体1")
L = Me.WindowLeft + (Me.WindowWidth - Me.InsideWidth) + Me.Command0.Left
T = Me.WindowTop + (Me.WindowHeight - Me.InsideHeight) + Me.Command0.Top + Me.Command0.Height
frm.Move L, T
End Sub作者: pq318 时间: 2011-5-21 10:49
版主,还想问个后续问题,就是弹出的窗体1,如何控制它的大小啊作者: pq318 时间: 2011-5-21 10:51
是通过窗体的属性设置呢,还是可以用代码实现啊作者: pq318 时间: 2011-5-21 10:51
是通过窗体的属性设置呢,还是可以用代码实现啊作者: hjb016 时间: 2011-5-21 10:58
Me.InsideWidth=宽度
Me.InsideHeight=高度作者: todaynew 时间: 2011-5-21 11:15