Form2.frm
上传用户:hyb6888
上传日期:2016-01-24
资源大小:5186k
文件大小:5k
源码类别:

输入法编程

开发平台:

Visual C++

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "版权申明"
  5.    ClientHeight    =   2910
  6.    ClientLeft      =   45
  7.    ClientTop       =   435
  8.    ClientWidth     =   5745
  9.    LinkTopic       =   "Form2"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   194
  13.    ScaleMode       =   3  'Pixel
  14.    ScaleWidth      =   383
  15.    StartUpPosition =   2  '屏幕中心
  16.    Begin VB.Image Image2 
  17.       Height          =   1065
  18.       Left            =   4200
  19.       Picture         =   "Form2.frx":0000
  20.       Stretch         =   -1  'True
  21.       Top             =   1470
  22.       Width           =   1365
  23.    End
  24.    Begin VB.Line Line2 
  25.       BorderColor     =   &H000000FF&
  26.       BorderWidth     =   5
  27.       X1              =   0
  28.       X2              =   408
  29.       Y1              =   176
  30.       Y2              =   176
  31.    End
  32.    Begin VB.Label Label4 
  33.       Caption         =   "版 权 人: 王   华"
  34.       BeginProperty Font 
  35.          Name            =   "宋体"
  36.          Size            =   14.25
  37.          Charset         =   134
  38.          Weight          =   400
  39.          Underline       =   0   'False
  40.          Italic          =   0   'False
  41.          Strikethrough   =   0   'False
  42.       EndProperty
  43.       Height          =   375
  44.       Left            =   240
  45.       TabIndex        =   3
  46.       Top             =   2280
  47.       Width           =   2895
  48.    End
  49.    Begin VB.Line Line1 
  50.       BorderColor     =   &H000000FF&
  51.       BorderWidth     =   5
  52.       X1              =   -8
  53.       X2              =   400
  54.       Y1              =   96
  55.       Y2              =   96
  56.    End
  57.    Begin VB.Label Label3 
  58.       Caption         =   "发行日期: 2005年5月1日"
  59.       BeginProperty Font 
  60.          Name            =   "宋体"
  61.          Size            =   14.25
  62.          Charset         =   134
  63.          Weight          =   400
  64.          Underline       =   0   'False
  65.          Italic          =   0   'False
  66.          Strikethrough   =   0   'False
  67.       EndProperty
  68.       Height          =   375
  69.       Left            =   240
  70.       TabIndex        =   2
  71.       Top             =   1920
  72.       Width           =   3735
  73.    End
  74.    Begin VB.Label Label2 
  75.       Caption         =   "软件名称:《极速五笔》"
  76.       BeginProperty Font 
  77.          Name            =   "宋体"
  78.          Size            =   14.25
  79.          Charset         =   134
  80.          Weight          =   400
  81.          Underline       =   0   'False
  82.          Italic          =   0   'False
  83.          Strikethrough   =   0   'False
  84.       EndProperty
  85.       Height          =   375
  86.       Left            =   240
  87.       TabIndex        =   1
  88.       Top             =   1560
  89.       Width           =   3255
  90.    End
  91.    Begin VB.Label Label1 
  92.       Caption         =   $"Form2.frx":42AE
  93.       BeginProperty Font 
  94.          Name            =   "宋体"
  95.          Size            =   14.25
  96.          Charset         =   134
  97.          Weight          =   400
  98.          Underline       =   0   'False
  99.          Italic          =   0   'False
  100.          Strikethrough   =   0   'False
  101.       EndProperty
  102.       ForeColor       =   &H00C00000&
  103.       Height          =   1215
  104.       Left            =   240
  105.       TabIndex        =   0
  106.       Top             =   120
  107.       Width           =   5415
  108.    End
  109. End
  110. Attribute VB_Name = "Form2"
  111. Attribute VB_GlobalNameSpace = False
  112. Attribute VB_Creatable = False
  113. Attribute VB_PredeclaredId = True
  114. Attribute VB_Exposed = False
  115. Private Type BROWSEINFO
  116. hwndOwner As Long
  117. pidlRoot As Long
  118. pszDisplayName As Long
  119. lpszTitle As Long
  120. ulFlags As Long
  121. lpfnCallback As Long
  122. lParam As Long
  123. iImage As Long
  124. End Type
  125. Private Const BIF_RETURNONLYFSDIRS = 1
  126. Private Const MAX_PATH = 260
  127. Private Declare Sub CoTaskMemFree Lib "ole32.dll" (ByVal hMem As Long)
  128. Private Declare Function lstrcat Lib "kernel32" Alias "lstrcatA" (ByVal lpString1 As String, ByVal lpString2 As String) As Long
  129. Private Declare Function SHBrowseForFolder Lib "shell32" (lpbi As BROWSEINFO) As Long
  130. Private Declare Function SHGetPathFromIDList Lib "shell32" (ByVal pidList As Long, ByVal lpBuffer As String) As Long
  131. Private Declare Function outsource Lib "codemanage.dll" (ByVal Code As String, ByVal CodeSourceas As String) As Boolean
  132. Private Declare Function creat Lib "codemanage.dll" (ByVal Code As String, ByVal CodeSourceas As String) As Boolean
  133. Private Sub Form_Unload(Cancel As Integer)
  134.     Form2.Hide
  135.     Form1.Show
  136.     Form5.Show
  137.     Form4.Show
  138. End Sub
  139. Private Sub Image2_Click()
  140.     Form2.Hide
  141.     Form1.Show
  142.     Form5.Show
  143.     Form4.Show
  144. End Sub