📄 trusta.frm
字号:
VERSION 5.00
Begin VB.Form trusta
Caption = "Form1"
ClientHeight = 6120
ClientLeft = 60
ClientTop = 345
ClientWidth = 8220
LinkTopic = "Form1"
ScaleHeight = 6120
ScaleWidth = 8220
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Cmd2
Caption = "Cancel"
Height = 495
Left = 4200
TabIndex = 4
Top = 2880
Width = 1335
End
Begin VB.CommandButton Cmd1
Caption = "OK"
Height = 495
Left = 2280
TabIndex = 3
Top = 2880
Width = 1335
End
Begin VB.TextBox Text2
Height = 495
Left = 3960
TabIndex = 1
Top = 960
Width = 1695
End
Begin VB.TextBox Text1
Height = 495
Left = 1200
TabIndex = 0
Top = 960
Width = 1695
End
Begin VB.Label Label3
Caption = "to"
Height = 375
Left = 3240
TabIndex = 6
Top = 1080
Width = 615
End
Begin VB.Label Label2
Caption = "from"
Height = 375
Left = 360
TabIndex = 5
Top = 1080
Width = 735
End
Begin VB.Label Label1
Caption = "Please input report time"
Height = 495
Left = 360
TabIndex = 2
Top = 360
Width = 1935
End
End
Attribute VB_Name = "trusta"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Cmd1_Click()
On Error GoTo err
Dim Edate As Long
Dim Bdate As Long
Edate = CLng(Text2.Text)
Bdate = CLng(Text1.Text)
DataEnvironment2.Command1_Grouping Edate, Bdate
DataReptrusta.Show
err:
Text1.SetFocus
End Sub
Private Sub Cmd2_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -