getway.frm

来自「功能强大的个人工作通讯录」· FRM 代码 · 共 122 行

FRM
122
字号
VERSION 5.00
Begin VB.Form Getway 
   BackColor       =   &H00FFC0C0&
   Caption         =   "添加相片"
   ClientHeight    =   5970
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   7140
   LinkTopic       =   "Form1"
   ScaleHeight     =   5970
   ScaleWidth      =   7140
   StartUpPosition =   3  '窗口缺省
   Begin VB.CheckBox Check1 
      BackColor       =   &H00FFC0C0&
      Caption         =   "截图时隐藏本窗口"
      Height          =   390
      Left            =   4350
      TabIndex        =   7
      Top             =   5175
      Width           =   1905
   End
   Begin VB.CommandButton cmdSaveP 
      Caption         =   "保存"
      Height          =   495
      Left            =   615
      TabIndex        =   6
      Top             =   5295
      Width           =   1320
   End
   Begin VB.CommandButton cmdDrop 
      Caption         =   "放弃"
      Height          =   510
      Left            =   2100
      TabIndex        =   5
      Top             =   5295
      Width           =   1305
   End
   Begin VB.Frame Frame1 
      BackColor       =   &H00FFC0C0&
      Height          =   4140
      Left            =   450
      TabIndex        =   3
      Top             =   855
      Width           =   3150
      Begin VB.PictureBox Picture1 
         Appearance      =   0  'Flat
         BackColor       =   &H80000005&
         ForeColor       =   &H80000008&
         Height          =   3735
         Left            =   150
         ScaleHeight     =   3705
         ScaleWidth      =   2790
         TabIndex        =   4
         Top             =   240
         Width           =   2820
      End
   End
   Begin VB.CommandButton Command2 
      Caption         =   "从当前屏幕截图"
      Height          =   825
      Left            =   4170
      TabIndex        =   1
      Top             =   3180
      Width           =   2280
   End
   Begin VB.CommandButton Command1 
      Caption         =   "从本地电脑导入"
      Height          =   795
      Left            =   4155
      TabIndex        =   0
      Top             =   2040
      Width           =   2340
   End
   Begin VB.Label NO 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "Label2"
      Height          =   180
      Left            =   1560
      TabIndex        =   8
      Top             =   660
      Width           =   540
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      BackColor       =   &H00FFC0C0&
      Caption         =   "你可以通过以下方式添加联系人的相片:"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   240
      Left            =   540
      TabIndex        =   2
      Top             =   165
      Width           =   4590
   End
End
Attribute VB_Name = "Getway"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

Private Sub Command2_Click()
MDI.Hide
Me.Hide
Sleep 500
GetPicture.Show
End Sub

Private Sub Form_Load()
Check1.Value = 1
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?