⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wizpage6.frm

📁 不错的一个VB菜单设计 界面和功能都不错
💻 FRM
字号:
VERSION 5.00
Begin VB.Form WizPage6 
   BorderStyle     =   0  'None
   ClientHeight    =   2865
   ClientLeft      =   3690
   ClientTop       =   3975
   ClientWidth     =   5730
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "WizPage6.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   191
   ScaleMode       =   3  'Pixel
   ScaleWidth      =   382
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton Command5 
      Height          =   300
      Left            =   4860
      TabIndex        =   6
      Top             =   3105
      Width           =   405
   End
   Begin VB.ListBox List2 
      Height          =   1620
      Left            =   3150
      TabIndex        =   5
      Top             =   1110
      Width           =   1545
   End
   Begin VB.CommandButton Command4 
      Caption         =   ">>"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   300
      Left            =   2340
      TabIndex        =   4
      Top             =   2310
      Width           =   690
   End
   Begin VB.CommandButton Command3 
      Caption         =   ">"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   300
      Left            =   2340
      TabIndex        =   3
      Top             =   1950
      Width           =   690
   End
   Begin VB.CommandButton Command2 
      Caption         =   "<<"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   300
      Left            =   2340
      TabIndex        =   2
      Top             =   1590
      Width           =   690
   End
   Begin VB.ListBox List1 
      Height          =   1620
      Left            =   690
      TabIndex        =   0
      Top             =   1110
      Width           =   1545
   End
   Begin VB.CommandButton Command1 
      Caption         =   "<"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   300
      Left            =   2340
      TabIndex        =   1
      Top             =   1230
      Width           =   690
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "This page demonstrates a way to workaround the keyboard order limitations."
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   480
      Index           =   0
      Left            =   330
      TabIndex        =   7
      Top             =   180
      Width           =   5325
   End
End
Attribute VB_Name = "WizPage6"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Load()
  Dim lngInd As Long
  
  For lngInd = 0 To 5
    List1.AddItem "Dummy item " & lngInd & " on List1"
    List2.AddItem "Dummy item " & lngInd & " on List2"
  Next
End Sub



⌨️ 快捷键说明

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