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

📄 f3-4.frm

📁 VB课程教学的讲义源的代码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "ACSII码显示"
   ClientHeight    =   3192
   ClientLeft      =   60
   ClientTop       =   348
   ClientWidth     =   4740
   LinkTopic       =   "Form1"
   ScaleHeight     =   3192
   ScaleWidth      =   4740
   StartUpPosition =   3  '窗口缺省
   Begin VB.PictureBox Picture1 
      Height          =   2775
      Left            =   0
      ScaleHeight     =   2724
      ScaleWidth      =   4524
      TabIndex        =   0
      Top             =   0
      Width           =   4575
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Picture1_Click()
  Dim asc As Integer, i As Integer
  Picture1.Print "                  ASC码对照表"
  For asc = 32 To 126
      Picture1.Print Tab(7 * i + 2); Chr(asc); "="; asc;
      i = i + 1
      If i = 7 Then i = 0: Picture1.Print   '换行
  Next asc
End Sub

⌨️ 快捷键说明

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