📄 form19.frm
字号:
VERSION 5.00
Begin VB.Form Form19
Caption = "图10-18"
ClientHeight = 8745
ClientLeft = 60
ClientTop = 345
ClientWidth = 8565
LinkTopic = "Form19"
ScaleHeight = 8745
ScaleWidth = 8565
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "退出"
Height = 495
Left = 6960
TabIndex = 6
Top = 7920
Width = 855
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 495
Left = 5160
TabIndex = 5
Top = 7920
Width = 975
End
Begin VB.Frame Frame1
Caption = " 请在这边填入查得的KFN的值: "
Height = 975
Left = 240
TabIndex = 2
Top = 7680
Width = 3975
Begin VB.TextBox Text3
Appearance = 0 'Flat
BackColor = &H00C0FFFF&
Height = 375
Left = 2400
TabIndex = 4
Top = 360
Width = 975
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "弯曲疲劳寿命系数KFN ="
Height = 180
Left = 240
TabIndex = 3
Top = 480
Width = 1890
End
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
Height = 375
Left = 3720
TabIndex = 1
Top = 7080
Width = 1335
End
Begin VB.Line Line1
X1 = 0
X2 = 8520
Y1 = 7560
Y2 = 7560
End
Begin VB.Image Image1
Height = 6915
Left = 120
Picture = "Form19.frx":0000
Top = 120
Width = 8295
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "N = "
Height = 180
Left = 3240
TabIndex = 0
Top = 7200
Width = 360
End
End
Attribute VB_Name = "Form19"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim xiao As Double
xiao = Text3.Text
Form9.Text10.Text = xiao
Me.Hide
Form9.Show
End Sub
Private Sub Command2_Click()
Unload Me
Form9.Show
End Sub
Private Sub Form_Load()
Dim n As Double
Dim j As Double
Dim lh As Double
Dim v As Double
Dim gd As Double
Dim m As Double
Dim z1 As Double
Dim z2 As Double
Dim y As Double
Dim bz As Double
Dim n2 As Double
Dim j2 As Double
Dim lh2 As Double
Dim v2 As Double
m = Form9.Text3.Text
z1 = Form9.Text5.Text
z2 = Form9.Text7.Text
y = Form9.Text2.Text
bz = Form9.Text4.Text
gd = Form9.Text6.Text
v1 = 1000 * gd * 60 / 3.1415926 / m / z1
n1 = 60 * v1 * 1 * bz * 8 * 300 * y
Text1.Text = n1
Text1.Enabled = False
'v = n * 3.1415926 * m * z1 / 60 / 1000
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -