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

📄 setupabout.frm

📁 出版社图书出货管理系统,包括图书的出库,入库,结果输出
💻 FRM
字号:
VERSION 5.00
Begin VB.Form setupabout 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "设置"
   ClientHeight    =   3555
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4680
   Icon            =   "setupabout.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3555
   ScaleWidth      =   4680
   StartUpPosition =   1  'CenterOwner
   Begin VB.TextBox Text3 
      Height          =   375
      Left            =   1440
      TabIndex        =   7
      Text            =   "Text3"
      Top             =   2400
      Width           =   3015
   End
   Begin VB.TextBox Text2 
      Height          =   375
      Left            =   1440
      TabIndex        =   6
      Text            =   "Text2"
      Top             =   2040
      Width           =   3015
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定"
      Height          =   375
      Left            =   1440
      TabIndex        =   3
      Top             =   3120
      Width           =   1695
   End
   Begin VB.TextBox Text1 
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   9.75
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   1440
      TabIndex        =   2
      Top             =   1680
      Width           =   3015
   End
   Begin VB.Label Label3 
      BackStyle       =   0  'Transparent
      Caption         =   "Email :yjxiong@mail.csu.edu.cn  QQ:9521715"
      Height          =   375
      Left            =   600
      TabIndex        =   9
      Top             =   720
      Width           =   3735
   End
   Begin VB.Label Label2 
      Caption         =   "此版完成时间:2005年4月23号"
      Height          =   255
      Left            =   1080
      TabIndex        =   8
      Top             =   1200
      Width           =   2535
   End
   Begin VB.Label Label6 
      Caption         =   "致谢:"
      Height          =   375
      Left            =   720
      TabIndex        =   5
      Top             =   2520
      Width           =   1095
   End
   Begin VB.Label Label5 
      Caption         =   "欢迎:"
      Height          =   375
      Left            =   720
      TabIndex        =   4
      Top             =   2160
      Width           =   1095
   End
   Begin VB.Label Label4 
      Caption         =   "使用单位:"
      Height          =   375
      Left            =   360
      TabIndex        =   1
      Top             =   1800
      Width           =   1215
   End
   Begin VB.Label Label1 
      Caption         =   "设计者:熊拥军"
      BeginProperty Font 
         Name            =   "楷体_GB2312"
         Size            =   15.75
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   1080
      TabIndex        =   0
      Top             =   360
      Width           =   2415
   End
End
Attribute VB_Name = "setupabout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
  dwstring = Text1.Text
  welcomestring = Text2.Text
  thankstring = Text3.Text
  '限制使用天数开始
  
   sysdir = "d:\cbssys\dw.txt"
   Open sysdir For Output As #1

   Print #1, dwstring
   Print #1, welcomestring
   Print #1, thankstring
   
   Close #1
   
  Unload Me
End Sub

Private Sub Form_Load()
  Text1.Text = dwstring
  Text2.Text = welcomestring
  Text3.Text = thankstring
  
End Sub

⌨️ 快捷键说明

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