📄 系统目录.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 1965
ClientLeft = 60
ClientTop = 345
ClientWidth = 4485
LinkTopic = "Form1"
ScaleHeight = 1965
ScaleWidth = 4485
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text2
Height = 285
Left = 1800
TabIndex = 4
Text = "Text2"
Top = 1290
Width = 2145
End
Begin VB.TextBox Text1
Height = 285
Left = 1800
TabIndex = 3
Text = "Text1"
Top = 780
Width = 2145
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "系统文件目录:"
Height = 180
Left = 330
TabIndex = 2
Top = 1350
Width = 1260
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "操作系统目录:"
Height = 180
Left = 360
TabIndex = 1
Top = 840
Width = 1260
End
Begin VB.Shape Shape1
BorderColor = &H80000001&
BorderWidth = 2
Height = 465
Left = 1110
Shape = 4 'Rounded Rectangle
Top = 90
Width = 2415
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "系统目录路径"
BeginProperty Font
Name = "隶书"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 1200
TabIndex = 0
Top = 90
Width = 2160
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Declare Function GetWindowsDirectory Lib "kernel32" Alias "GetWindowsDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long
Private Declare Function GetSystemDirectory Lib "kernel32" Alias "GetSystemDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long
Private Sub Form_Load()
Dim S As String * 80, Length As Long
Dim WinPath As String, SysPath As String
Length = GetWindowsDirectory(S, Len(S))
WinPath = Left(S, Length)
Length = GetSystemDirectory(S, Len(S))
SysPath = Left(S, Length)
Text1 = WinPath
Text2 = SysPath
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -