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

📄 form1.ebf

📁 windows mobile 应用程序开发实践一书的源代码
💻 EBF
字号:
VERSION 5.00
Object = "{481BA4A3-56F2-11D1-A1AB-00C04FA87A04}#1.0#0"; "MSCECOMM.DLL"
Object = "{23CE4CF5-25A1-11D1-9A72-00A0C986B84A}#1.0#0"; "mscewinsock.dll"
Begin VB.Form Form1 
   Appearance      =   0  'Flat
   BackColor       =   &H80000001&
   Caption         =   "Form1"
   ClientHeight    =   4215
   ClientLeft      =   60
   ClientTop       =   840
   ClientWidth     =   3615
   ForeColor       =   &H80000008&
   ScaleHeight     =   4215
   ScaleWidth      =   3615
   ShowOK          =   -1  'True
   Begin CECOMMCtl.Comm Comm1 
      Left            =   1200
      Top             =   3240
      _cx             =   1400
      _cy             =   1000
      CommPort        =   1
      Settings        =   "9600,N,8,1"
      InputLen        =   0
      InputMode       =   0
      NullDiscard     =   0   'False
      ParityReplace   =   "?"
      RThreshold      =   0
      SThreshold      =   0
      Handshaking     =   0
      DTREnable       =   0   'False
      RTSEnable       =   0   'False
   End
   Begin WinSockCtl.WinSock WinSock1 
      Left            =   240
      Top             =   2280
      _cx             =   1800
      _cy             =   1000
      LocalPort       =   0
      Protocol        =   0
      RemoteHost      =   ""
      RemotePort      =   0
      ServiceName     =   ""
   End
   Begin VBCE.TextBox Text1 
      Height          =   2175
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   3495
      _cx             =   6165
      _cy             =   3836
      BackColor       =   -2147483643
      BorderStyle     =   1
      Enabled         =   -1  'True
      BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   -2147483640
      Text            =   ""
      Alignment       =   0
      HideSelection   =   -1  'True
      Locked          =   0   'False
      MaxLength       =   0
      MultiLine       =   0   'False
      PasswordChar    =   ""
      ScrollBars      =   0
   End
   Begin VBCE.Timer Timer1 
      Left            =   2280
      Top             =   2400
      _cx             =   847
      _cy             =   847
      Enabled         =   -1  'True
      Interval        =   0
   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 Form_OKClick()
    App.End
End Sub





Private Sub HScroll1_Scroll()

Text1.Text = CDbl(Text1.Text) - 1

End Sub

Private Sub Timer1_Timer()
MsgBox "俺被触发了", vbInformation, "看到了吗"
End Sub


Private Sub VScroll1_Change()

End Sub

⌨️ 快捷键说明

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