上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:4k
源码类别:

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frm_xltc 
  3.    Caption         =   "序列填充"
  4.    ClientHeight    =   3300
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   6150
  8.    Icon            =   "序列填充.frx":0000
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   3300
  11.    ScaleWidth      =   6150
  12.    StartUpPosition =   1  '所有者中心
  13.    Begin VB.CommandButton Command4 
  14.       Caption         =   "填加"
  15.       Height          =   315
  16.       Left            =   5460
  17.       TabIndex        =   9
  18.       Top             =   120
  19.       Width           =   570
  20.    End
  21.    Begin VB.TextBox Text1 
  22.       Height          =   300
  23.       Left            =   2205
  24.       TabIndex        =   8
  25.       Text            =   " "
  26.       Top             =   120
  27.       Width           =   3180
  28.    End
  29.    Begin VB.CommandButton Command3 
  30.       Caption         =   "填加序列(&A)"
  31.       Height          =   300
  32.       Left            =   4785
  33.       TabIndex        =   7
  34.       Top             =   2040
  35.       Width           =   1120
  36.    End
  37.    Begin VB.CommandButton Command2 
  38.       Caption         =   "取消(&C)"
  39.       Height          =   300
  40.       Left            =   4800
  41.       TabIndex        =   5
  42.       Top             =   2880
  43.       Width           =   1120
  44.    End
  45.    Begin VB.CommandButton Command1 
  46.       Caption         =   "确定(&O)"
  47.       Height          =   300
  48.       Left            =   4800
  49.       TabIndex        =   4
  50.       Top             =   2460
  51.       Width           =   1120
  52.    End
  53.    Begin VB.Frame frame1 
  54.       Caption         =   "填充方向"
  55.       ForeColor       =   &H00000000&
  56.       Height          =   1245
  57.       Left            =   4680
  58.       TabIndex        =   1
  59.       Top             =   570
  60.       Width           =   1335
  61.       Begin VB.OptionButton Option2 
  62.          Caption         =   "先行后列"
  63.          Height          =   375
  64.          Left            =   120
  65.          TabIndex        =   3
  66.          Top             =   720
  67.          Width           =   1095
  68.       End
  69.       Begin VB.OptionButton Option1 
  70.          Caption         =   "先列后行"
  71.          Height          =   375
  72.          Left            =   120
  73.          TabIndex        =   2
  74.          Top             =   240
  75.          Value           =   -1  'True
  76.          Width           =   1095
  77.       End
  78.    End
  79.    Begin VB.ListBox List1 
  80.       Height          =   2580
  81.       ItemData        =   "序列填充.frx":1042
  82.       Left            =   90
  83.       List            =   "序列填充.frx":1055
  84.       TabIndex        =   0
  85.       Top             =   570
  86.       Width           =   4455
  87.    End
  88.    Begin VB.Label Label1 
  89.       Caption         =   "请选择您要填充的序列:"
  90.       ForeColor       =   &H00000000&
  91.       Height          =   255
  92.       Left            =   120
  93.       TabIndex        =   6
  94.       Top             =   180
  95.       Width           =   2025
  96.    End
  97. End
  98. Attribute VB_Name = "frm_xltc"
  99. Attribute VB_GlobalNameSpace = False
  100. Attribute VB_Creatable = False
  101. Attribute VB_PredeclaredId = True
  102. Attribute VB_Exposed = False
  103. '***********************************************
  104. '*    模 块 名 称 :序列填充
  105. '*    功 能 描 述 :
  106. '*    程序员姓名  :奚俊峰
  107. '*    最后修改人  :奚俊峰
  108. '*    最后修改时间:2002/01/21
  109. '***********************************************
  110. Option Explicit
  111. Dim iStr As String
  112. Private Sub Command1_Click()
  113.     If Option1.Value = True Then
  114.         MDI_frame.lcls_xltc.ll_tcfx = 0
  115.     End If
  116.     If Option2.Value = True Then
  117.         MDI_frame.lcls_xltc.ll_tcfx = 1
  118.     End If
  119.     MDI_frame.lcls_xltc.ls_tczf = List1.Text
  120.     Unload Me
  121. End Sub
  122. Private Sub command2_Click()
  123.     Unload Me
  124. End Sub
  125. Private Sub Command3_Click()
  126.     Text1.Visible = True
  127.     Command4.Visible = True
  128. End Sub
  129. Private Sub Command4_Click()
  130.     iStr = Text1.Text
  131.     List1.AddItem iStr
  132.     
  133. End Sub
  134. Private Sub Form_Load()
  135.     Text1.Visible = False
  136.     Command3.Visible = False
  137.     Command4.Visible = False
  138.     iStr = ""
  139. End Sub