update...

Signed-off-by: 502647092 <jtb1@163.com>
master
502647092 2016-01-24 22:48:49 +08:00
parent 7f1cfb17fd
commit b4d8728830
1 changed files with 1075 additions and 1075 deletions

View File

@ -7,7 +7,7 @@ Attribute VB_Name = "Frm_Tools"
'最后更新日期:2014年6月5日
'创建人:蒋天蓓
'创建人: 喵♂呜
'单位:上海市定海水电工程安装有限公司
@ -332,19 +332,19 @@ End Sub
Public Sub Daily_Show(ByVal Frm As Form, ByVal Daily As Long)
Dim h As Long
Dim w As Long
Dim I As Long
Dim i As Long
h = Frm.Height
w = Frm.Width
Frm.Height = 20
Frm.Width = 20
For I = 20 To w Step Daily
For i = 20 To w Step Daily
Sleep 10
Frm.Width = I
Frm.Width = i
Frm.Refresh
Next
For I = 20 To h Step Daily
For i = 20 To h Step Daily
Sleep 10
Frm.Height = I
Frm.Height = i
Frm.Refresh
Next
End Sub