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

📄

📁 VB开发的ERP系统
💻
字号:
VERSION 5.00
Begin VB.Form frm_xltc 
   Caption         =   "序列填充"
   ClientHeight    =   3300
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   6150
   Icon            =   "序列填充.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   3300
   ScaleWidth      =   6150
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton Command4 
      Caption         =   "填加"
      Height          =   315
      Left            =   5460
      TabIndex        =   9
      Top             =   120
      Width           =   570
   End
   Begin VB.TextBox Text1 
      Height          =   300
      Left            =   2205
      TabIndex        =   8
      Text            =   " "
      Top             =   120
      Width           =   3180
   End
   Begin VB.CommandButton Command3 
      Caption         =   "填加序列(&A)"
      Height          =   300
      Left            =   4785
      TabIndex        =   7
      Top             =   2040
      Width           =   1120
   End
   Begin VB.CommandButton Command2 
      Caption         =   "取消(&C)"
      Height          =   300
      Left            =   4800
      TabIndex        =   5
      Top             =   2880
      Width           =   1120
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定(&O)"
      Height          =   300
      Left            =   4800
      TabIndex        =   4
      Top             =   2460
      Width           =   1120
   End
   Begin VB.Frame frame1 
      Caption         =   "填充方向"
      ForeColor       =   &H00000000&
      Height          =   1245
      Left            =   4680
      TabIndex        =   1
      Top             =   570
      Width           =   1335
      Begin VB.OptionButton Option2 
         Caption         =   "先行后列"
         Height          =   375
         Left            =   120
         TabIndex        =   3
         Top             =   720
         Width           =   1095
      End
      Begin VB.OptionButton Option1 
         Caption         =   "先列后行"
         Height          =   375
         Left            =   120
         TabIndex        =   2
         Top             =   240
         Value           =   -1  'True
         Width           =   1095
      End
   End
   Begin VB.ListBox List1 
      Height          =   2580
      ItemData        =   "序列填充.frx":1042
      Left            =   90
      List            =   "序列填充.frx":1055
      TabIndex        =   0
      Top             =   570
      Width           =   4455
   End
   Begin VB.Label Label1 
      Caption         =   "请选择您要填充的序列:"
      ForeColor       =   &H00000000&
      Height          =   255
      Left            =   120
      TabIndex        =   6
      Top             =   180
      Width           =   2025
   End
End
Attribute VB_Name = "frm_xltc"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'***********************************************
'*    模 块 名 称 :序列填充
'*    功 能 描 述 :
'*    程序员姓名  :奚俊峰
'*    最后修改人  :奚俊峰
'*    最后修改时间:2002/01/21
'***********************************************

Option Explicit
Dim iStr As String
Private Sub Command1_Click()
    If Option1.Value = True Then
        MDI_frame.lcls_xltc.ll_tcfx = 0
    End If
    If Option2.Value = True Then
        MDI_frame.lcls_xltc.ll_tcfx = 1
    End If
    MDI_frame.lcls_xltc.ls_tczf = List1.Text
    Unload Me
End Sub

Private Sub command2_Click()
    Unload Me
End Sub

Private Sub Command3_Click()
    Text1.Visible = True
    Command4.Visible = True
End Sub

Private Sub Command4_Click()
    iStr = Text1.Text
    List1.AddItem iStr
    
End Sub

Private Sub Form_Load()
    Text1.Visible = False
    Command3.Visible = False
    Command4.Visible = False
    iStr = ""
End Sub

⌨️ 快捷键说明

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