?? aboutme.frm
字號:
VERSION 5.00
Begin VB.Form Form2
BorderStyle = 1 'Fixed Single
Caption = "關于本程序"
ClientHeight = 3315
ClientLeft = 6375
ClientTop = 4695
ClientWidth = 5505
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3315
ScaleWidth = 5505
WhatsThisButton = -1 'True
WhatsThisHelp = -1 'True
Begin VB.Timer Timer1
Interval = 10
Left = 600
Top = 2880
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "歡迎交流指導"
Height = 255
Left = 1800
TabIndex = 4
Top = 2280
Width = 1815
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "QQ:463777464"
Height = 255
Left = 1800
TabIndex = 3
Top = 1920
Width = 2055
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "E-Mail:dddlzhu@163.com"
Height = 255
Left = 1800
TabIndex = 2
Top = 1560
Width = 2175
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "Power By amigenius(dddlzhu) @2005.6"
ForeColor = &H00808080&
Height = 255
Left = 1800
TabIndex = 1
Top = 1200
Width = 3375
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Nokia 3510i 液晶取模助手 Ver1.0"
BeginProperty Font
Name = "宋體"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF8080&
Height = 180
Left = 1440
TabIndex = 0
Top = 840
Width = 3165
End
Begin VB.Image Image1
Height = 3525
Left = 2760
Picture = "aboutme.frx":0000
Top = 6000
Width = 5250
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Type OSVERSIONINFO
dwOSVersionInfoSize As Long
dwMajorVersion As Long
dwMinorVersion As Long
dwBuildNumber As Long
dwPlatformId As Long
szCSDVersion As String * 128
End Type
Dim Flag, ttt As Integer
Private Declare Function GetVersionEx Lib "kernel32" _
Alias "GetVersionExA" (lpVersionInformation As OSVERSIONINFO) As Long
Private Sub Form_Load()
Image1.Left = 0
Image1.Top = 0
Me.Height = Image1.Height + 370
Me.Width = Image1.Width
ttt = 0
Dim rtn As Long
If Flag = 1 Then
rtn = GetWindowLong(Me.hwnd, GWL_EXSTYLE)
rtn = rtn Or WS_EX_LAYERED
SetWindowLong Me.hwnd, GWL_EXSTYLE, rtn
SetLayeredWindowAttributes Me.hwnd, 0, 1, LWA_ALPHA
End If
Image1.Left = 0
Image1.Top = 0
Me.Width = Image1.Width
Me.Height = Image1.Height + 300
Dim Ver As OSVERSIONINFO
Dim x As Long
Ver.dwOSVersionInfoSize = Len(Ver)
GetVersionEx Ver
Flag = 0
If Ver.dwMajorVersion >= 5 Then Flag = 1
End Sub
Private Sub Timer1_Timer()
Dim rtn As Long
If Flag = 1 Then
ttt = ttt + 5
rtn = GetWindowLong(Me.hwnd, GWL_EXSTYLE)
rtn = rtn Or WS_EX_LAYERED
SetWindowLong Me.hwnd, GWL_EXSTYLE, rtn
SetLayeredWindowAttributes Me.hwnd, 0, ttt, LWA_ALPHA
If ttt >= 255 Then Timer1.Interval = 0
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -