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

📄 frmsentinfo.frm

📁 手机短心控制接收发射程序,通过串口与手机连接,
💻 FRM
字号:
VERSION 5.00
Object = "{FE0065C0-1B7B-11CF-9D53-00AA003C9CB6}#1.1#0"; "COMCT232.OCX"
Begin VB.Form frmSentInfo 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "短信发送状态"
   ClientHeight    =   2445
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   5265
   Icon            =   "frmSentInfo.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2445
   ScaleWidth      =   5265
   StartUpPosition =   2  '屏幕中心
   Begin VB.Frame Frame1 
      Height          =   1095
      Left            =   360
      TabIndex        =   0
      Top             =   240
      Width           =   4455
      Begin VB.PictureBox Picture1 
         Appearance      =   0  'Flat
         BorderStyle     =   0  'None
         ForeColor       =   &H80000008&
         Height          =   600
         Index           =   0
         Left            =   360
         Picture         =   "frmSentInfo.frx":030A
         ScaleHeight     =   600
         ScaleWidth      =   600
         TabIndex        =   2
         Top             =   360
         Width           =   600
      End
      Begin VB.PictureBox Picture1 
         Appearance      =   0  'Flat
         BorderStyle     =   0  'None
         ForeColor       =   &H80000008&
         Height          =   600
         Index           =   1
         Left            =   3720
         Picture         =   "frmSentInfo.frx":0614
         ScaleHeight     =   600
         ScaleWidth      =   600
         TabIndex        =   1
         Top             =   360
         Width           =   600
      End
      Begin ComCtl2.Animation Animation1 
         Height          =   495
         Left            =   360
         TabIndex        =   3
         Top             =   360
         Width           =   2535
         _ExtentX        =   4471
         _ExtentY        =   873
         _Version        =   327681
         FullWidth       =   169
         FullHeight      =   33
      End
   End
   Begin VB.Frame Frame2 
      Caption         =   "发送状态"
      Height          =   735
      Left            =   360
      TabIndex        =   4
      Top             =   1440
      Width           =   4575
      Begin VB.Label labRsStatu 
         Caption         =   "状态"
         Height          =   255
         Left            =   120
         TabIndex        =   5
         Top             =   360
         Width           =   4215
      End
   End
End
Attribute VB_Name = "frmSentInfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Public smsSaveNo As String

Private Sub Form_Load()
On Error Resume Next
    Animation1.AutoPlay = True
    Animation1.Open App.Path & "\FILECOPY.AVI"
End Sub

Private Sub labRsStatu_Change()
On Error Resume Next
    If Left(labRsStatu.Caption, 8) = "已将短信存于手机" Then
        PauseWait (300)
        labRsStatu.Caption = "短信正在发送中......"
        'PauseWait (300)
        If SentB = True Then
            Call frmMain.rs232("SentSms", 13, Val(smsSaveNo))
        Else
            Unload Me
        End If
        'PauseWait (300)
        'labRsStatu.Caption = "短信发送完成!"
    End If
End Sub


⌨️ 快捷键说明

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