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

📄 frmmultiprogress.frm

📁 一个比较小的程序
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmMultiProgress 
   Caption         =   "Form1"
   ClientHeight    =   3090
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   3090
   ScaleWidth      =   4680
   StartUpPosition =   3  '窗口缺省
   Begin VB.TextBox Text1 
      Height          =   375
      Left            =   2760
      TabIndex        =   2
      Top             =   1440
      Width           =   1035
   End
   Begin VB.CommandButton Command2 
      Caption         =   "Command2"
      Height          =   435
      Left            =   960
      TabIndex        =   1
      Top             =   1560
      Width           =   1275
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Command1"
      Height          =   495
      Left            =   1020
      TabIndex        =   0
      Top             =   660
      Width           =   1215
   End
End
Attribute VB_Name = "frmMultiProgress"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim MemorySpace1     As New clsMemoryMap
    
  Private Sub Form_Load()
          MemorySpace1.OpenMemory ("Space1")
  End Sub
    
  Private Sub Form_Unload(Cancel As Integer)
          MemorySpace1.CloseMemory
  End Sub
    
    
  Private Sub Command1_Click()
  'Get   memory.
          Text1.Text = MemorySpace1.Peek
  End Sub
    
  Private Sub Command2_Click()
  'Store   memory.
          MemorySpace1.Poke (Text1.Text)
  End Sub

⌨️ 快捷键说明

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