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

📄 frmcal.frm

📁 服装销售系统,VB开发.没有解压密码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmCal 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "销售加点提示"
   ClientHeight    =   1305
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   2835
   Icon            =   "frmCal.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1305
   ScaleWidth      =   2835
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton Command1 
      Caption         =   "确定"
      Default         =   -1  'True
      Height          =   375
      Left            =   780
      TabIndex        =   2
      Top             =   750
      Width           =   1170
   End
   Begin VB.TextBox txtR 
      Height          =   300
      Left            =   1305
      TabIndex        =   0
      Text            =   "0"
      Top             =   240
      Width           =   1245
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      Caption         =   "百分率(%):"
      Height          =   180
      Left            =   255
      TabIndex        =   1
      Top             =   285
      Width           =   990
   End
End
Attribute VB_Name = "frmCal"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Public R As Single

Private Sub Command1_Click()
    R = Val(txtR.Text)
    Unload Me
End Sub

Private Sub Form_Load()
    txtR.SelStart = 0
    txtR.SelLength = 1
End Sub

⌨️ 快捷键说明

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