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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form XT_PrintTItem 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "打印表头项目"
  5.    ClientHeight    =   3660
  6.    ClientLeft      =   4455
  7.    ClientTop       =   1500
  8.    ClientWidth     =   3165
  9.    Icon            =   "打印项目.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   3660
  14.    ScaleWidth      =   3165
  15.    StartUpPosition =   2  '屏幕中心
  16.    Begin VB.CommandButton Command2 
  17.       Caption         =   "取消(&C)"
  18.       Height          =   300
  19.       Left            =   2010
  20.       TabIndex        =   2
  21.       Top             =   3315
  22.       Width           =   1120
  23.    End
  24.    Begin VB.CommandButton Command1 
  25.       Caption         =   "确定(&O)"
  26.       Height          =   300
  27.       Left            =   795
  28.       TabIndex        =   1
  29.       Top             =   3315
  30.       Width           =   1120
  31.    End
  32.    Begin VB.ListBox List_Item 
  33.       Height          =   3210
  34.       Left            =   15
  35.       Style           =   1  'Checkbox
  36.       TabIndex        =   0
  37.       Top             =   60
  38.       Width           =   3135
  39.    End
  40. End
  41. Attribute VB_Name = "XT_PrintTItem"
  42. Attribute VB_GlobalNameSpace = False
  43. Attribute VB_Creatable = False
  44. Attribute VB_PredeclaredId = True
  45. Attribute VB_Exposed = False
  46. Option Explicit
  47. Dim add_item As New Recordset
  48. Dim Item_TF()
  49. Private Sub Command1_Click()
  50.     
  51.     'On Error Resume Next
  52.     Dim i As Integer: Dim CH As Integer
  53.     
  54.     For i = 0 To List_Item.ListCount - 1
  55.         If List_Item.Selected(i) = True Then
  56.             CH = 1
  57.         Else
  58.             CH = 0
  59.         End If
  60.         
  61.         Cw_DataEnvi.DataConnect.Execute "update Xt_text_input set YNPrint=" & CH & " where I_ID=" & Val(List_Item.ItemData(i))
  62.     Next i
  63.     
  64.     XT_BillPrintDesign.Command1_Click
  65.     Unload Me
  66. End Sub
  67. Private Sub Command2_Click()
  68.     Unload Me
  69. End Sub
  70. Private Sub Form_Load()
  71.     
  72.     'On Error Resume Next
  73.     Dim i As Integer
  74.     i = 0
  75.     Set add_item = Cw_DataEnvi.DataConnect.Execute("select * from Xt_text_input where text_group_code='" & XT_BillPrintDesign.Command1.Tag & "'")
  76.     
  77.     Do While Not add_item.EOF
  78.         List_Item.AddItem add_item!Text_Name
  79.         '--------------
  80.         List_Item.Selected(i) = add_item!YnPrint
  81.         List_Item.ItemData(i) = add_item!I_ID
  82.         '---------------
  83.         add_item.MoveNext
  84.         i = i + 1
  85.     Loop
  86.     add_item.Close
  87.     
  88. End Sub