📄 输出图形截面.frm
字号:
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Form1
BorderStyle = 1 'Fixed Single
Caption = "输出图形截面"
ClientHeight = 5865
ClientLeft = 150
ClientTop = 435
ClientWidth = 8760
Icon = "输出图形截面.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 5865
ScaleWidth = 8760
Begin MSComctlLib.StatusBar StBar1
Align = 2 'Align Bottom
Height = 255
Left = 0
TabIndex = 12
Top = 5610
Width = 8760
_ExtentX = 15452
_ExtentY = 450
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 1
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
EndProperty
EndProperty
End
Begin VB.CommandButton Command1
Caption = "显示"
Height = 375
Left = 7440
TabIndex = 10
Top = 4320
Width = 1095
End
Begin VB.Frame Frame2
Caption = "图类"
Height = 2295
Left = 7320
TabIndex = 5
Top = 1800
Width = 1335
Begin VB.OptionButton Opt
Caption = "轴力图"
Height = 255
Index = 3
Left = 240
TabIndex = 9
Top = 1800
Width = 975
End
Begin VB.OptionButton Opt
Caption = "剪力图"
Height = 255
Index = 2
Left = 240
TabIndex = 8
Top = 1320
Width = 975
End
Begin VB.OptionButton Opt
Caption = "弯矩图"
Height = 255
Index = 1
Left = 240
TabIndex = 7
Top = 840
Width = 975
End
Begin VB.OptionButton Opt
Caption = "荷载图"
Height = 255
Index = 0
Left = 240
TabIndex = 6
Top = 360
Value = -1 'True
Width = 975
End
End
Begin VB.CommandButton Command
Caption = "清除"
Height = 375
Left = 7440
TabIndex = 4
Top = 4800
Width = 1095
End
Begin VB.Frame Frame1
Caption = "显示"
Height = 1575
Left = 7320
TabIndex = 1
Top = 120
Width = 1335
Begin VB.CheckBox Check3
Caption = "内力值"
Height = 180
Left = 240
TabIndex = 11
Top = 1200
Width = 975
End
Begin VB.CheckBox Check1
Caption = "单元号"
Height = 375
Left = 240
TabIndex = 3
Top = 240
Value = 1 'Checked
Width = 855
End
Begin VB.CheckBox Check2
Caption = "结点号"
Height = 495
Left = 240
TabIndex = 2
Top = 600
Value = 1 'Checked
Width = 975
End
End
Begin VB.PictureBox Picture1
AutoRedraw = -1 'True
AutoSize = -1 'True
BackColor = &H00E0E0E0&
Height = 5100
Left = 0
ScaleHeight = 5040
ScaleWidth = 7080
TabIndex = 0
Top = 120
Width = 7140
End
Begin MSComDlg.CommonDialog ComD1
Left = 3600
Top = 1560
_ExtentX = 847
_ExtentY = 847
_Version = 393216
End
Begin MSComctlLib.ImageList ImageList1
Left = 3360
Top = 600
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 8
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "输出图形截面.frx":030A
Key = "new"
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "输出图形截面.frx":0368
Key = "open"
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "输出图形截面.frx":03C6
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "输出图形截面.frx":0424
Key = "back"
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "输出图形截面.frx":0482
Key = "save"
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "输出图形截面.frx":04E0
Key = "save as"
EndProperty
BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "输出图形截面.frx":053E
Key = "exit"
EndProperty
BeginProperty ListImage8 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "输出图形截面.frx":059C
Key = "homepage"
EndProperty
EndProperty
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
DefInt I-K, N
DefSng X-Y
Dim X1, Y1, x2, y2
Dim V() As Integer
Sub Command1_Click()
Select Case Selectedoption
Case 0
Picture1.Cls
Call 杆件图(Form1.Picture1)
Call 荷载图(Form1.Picture1)
StBar1.Panels(1) = 当前荷载 & " 荷载图"
Command.Caption = "计算内力"
Case 1
StBar1.Panels(1) = 当前荷载 & " 弯矩图"
Picture1.Cls
Call 杆件图(Form1.Picture1)
Call 弯矩图
Case 2
StBar1.Panels(1) = 当前荷载 & " 剪力图"
Picture1.Cls
Call 杆件图(Form1.Picture1)
Call 剪力图
Case 3
StBar1.Panels(1) = 当前荷载 & " 轴力图 "
Picture1.Cls
Call 杆件图(Form1.Picture1)
Call 轴力图
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -