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

📄 form1.ebf

📁 《Windows CE 权威指南》(作者:(美)CHRIS MUENCH
💻 EBF
字号:
VERSION 5.00
Object = "{69DAD386-D1AB-4A0C-B752-EB3D5720004D}#1.0#0"; "MyFirstCtrl.dll"
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   1680
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   5250
   ScaleHeight     =   1680
   ScaleWidth      =   5250
   Begin VB.CommandButton Command3 
      Caption         =   "Set"
      Height          =   375
      Left            =   4800
      TabIndex        =   6
      Top             =   1200
      Width           =   375
   End
   Begin VB.CommandButton Command2 
      Caption         =   "Get"
      Height          =   375
      Left            =   4800
      TabIndex        =   5
      Top             =   720
      Width           =   375
   End
   Begin VB.TextBox Text3 
      Height          =   375
      Left            =   120
      TabIndex        =   4
      Text            =   "Text3"
      Top             =   1200
      Width           =   4695
   End
   Begin VB.TextBox Text2 
      Height          =   375
      Left            =   2880
      TabIndex        =   3
      Text            =   "Text2"
      Top             =   720
      Width           =   1935
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Set"
      Height          =   375
      Left            =   2400
      TabIndex        =   2
      Top             =   720
      Width           =   375
   End
   Begin VB.TextBox Text1 
      Height          =   375
      Left            =   120
      TabIndex        =   1
      Text            =   "Text1"
      Top             =   720
      Width           =   2175
   End
   Begin MYFIRSTCTRLLibCtl.HexConv HexConv1 
      Height          =   495
      Left            =   120
      OleObjectBlob   =   "Form1.frx":0000
      TabIndex        =   0
      Top             =   120
      Width           =   5055
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Command1_Click()
    HexConv1.InValue = Text1.Text
End Sub

Private Sub Command2_Click()
    Text2.Text = HexConv1.OutValue
End Sub

Private Sub Command3_Click()
    HexConv1.SetDisplayString Text3.Text
End Sub

Private Sub HexConv1_OnOutChange()
    Text2.Text = HexConv1.OutValue
End Sub

⌨️ 快捷键说明

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