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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{D76D7128-4A96-11D3-BD95-D296DC2DD072}#1.0#0"; "VSOCX7.OCX"
  3. Begin VB.Form AutoTran_NoSaveList 
  4.    Caption         =   "未保存的转帐凭证列表"
  5.    ClientHeight    =   2505
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   3900
  9.    Icon            =   "自动转帐凭证_未保存凭证列表.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   2505
  14.    ScaleWidth      =   3900
  15.    StartUpPosition =   3  '窗口缺省
  16.    Begin VB.CommandButton cmd_Exit 
  17.       Appearance      =   0  'Flat
  18.       Caption         =   "退出(&E)"
  19.       Height          =   300
  20.       Left            =   2790
  21.       TabIndex        =   0
  22.       Top             =   2130
  23.       Width           =   1005
  24.    End
  25.    Begin VSFlex8Ctl.VSFlexGrid vsflex1 
  26.       Height          =   1890
  27.       Left            =   120
  28.       TabIndex        =   1
  29.       Top             =   150
  30.       Width           =   3680
  31.       _ExtentX        =   6491
  32.       _ExtentY        =   3334
  33.       Appearance      =   0
  34.       BorderStyle     =   1
  35.       Enabled         =   -1  'True
  36.       BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
  37.          Name            =   "宋体"
  38.          Size            =   9
  39.          Charset         =   134
  40.          Weight          =   400
  41.          Underline       =   0   'False
  42.          Italic          =   0   'False
  43.          Strikethrough   =   0   'False
  44.       EndProperty
  45.       MousePointer    =   0
  46.       BackColor       =   -2147483643
  47.       ForeColor       =   0
  48.       BackColorFixed  =   -2147483633
  49.       ForeColorFixed  =   -2147483630
  50.       BackColorSel    =   16711680
  51.       ForeColorSel    =   -2147483639
  52.       BackColorBkg    =   8421504
  53.       BackColorAlternate=   -2147483643
  54.       GridColor       =   -2147483633
  55.       GridColorFixed  =   -2147483632
  56.       TreeColor       =   -2147483630
  57.       FloodColor      =   0
  58.       SheetBorder     =   -2147483630
  59.       FocusRect       =   1
  60.       HighLight       =   1
  61.       AllowSelection  =   0   'False
  62.       AllowBigSelection=   0   'False
  63.       AllowUserResizing=   1
  64.       SelectionMode   =   0
  65.       GridLines       =   1
  66.       GridLinesFixed  =   2
  67.       GridLineWidth   =   1
  68.       Rows            =   8
  69.       Cols            =   3
  70.       FixedRows       =   1
  71.       FixedCols       =   0
  72.       RowHeightMin    =   0
  73.       RowHeightMax    =   0
  74.       ColWidthMin     =   0
  75.       ColWidthMax     =   0
  76.       ExtendLastCol   =   0   'False
  77.       FormatString    =   ""
  78.       ScrollTrack     =   0   'False
  79.       ScrollBars      =   3
  80.       ScrollTips      =   0   'False
  81.       MergeCells      =   0
  82.       MergeCompare    =   0
  83.       AutoResize      =   -1  'True
  84.       AutoSizeMode    =   0
  85.       AutoSearch      =   0
  86.       MultiTotals     =   -1  'True
  87.       SubtotalPosition=   1
  88.       OutlineBar      =   0
  89.       OutlineCol      =   0
  90.       Ellipsis        =   0
  91.       ExplorerBar     =   0
  92.       PicturesOver    =   0   'False
  93.       FillStyle       =   0
  94.       RightToLeft     =   0   'False
  95.       PictureType     =   0
  96.       TabBehavior     =   0
  97.       OwnerDraw       =   0
  98.       Editable        =   0   'False
  99.       ShowComboButton =   -1  'True
  100.       WordWrap        =   0   'False
  101.       TextStyle       =   0
  102.       TextStyleFixed  =   0
  103.       OleDragMode     =   0
  104.       OleDropMode     =   0
  105.       DataMode        =   0
  106.       VirtualData     =   -1  'True
  107.    End
  108. End
  109. Attribute VB_Name = "AutoTran_NoSaveList"
  110. Attribute VB_GlobalNameSpace = False
  111. Attribute VB_Creatable = False
  112. Attribute VB_PredeclaredId = True
  113. Attribute VB_Exposed = False
  114. '*********************************************************************************************************
  115. '*    模 块 名 称 :未存盘转帐凭证列表
  116. '*    功 能 描 述 :本次转帐未保存的凭证
  117. '*    程序员姓名  : 姜冬梅
  118. '*    最后修改人  : 姜冬梅
  119. '*    开始设计时间:
  120. '*    最后修改时间:2001/4/29
  121. '*    备        注:程序中所有依实际情况自定义部分均用[>>  <<]括起
  122. '*
  123. '*    1.每次调入外部功能窗体,均要加锁ChangeLock=True,窗体关闭后解锁ChangeLock=false
  124. '*
  125. '*
  126. '*********************************************************************************************************
  127. Dim jsq As Long         '临时计数器
  128. Dim SjhHeight As Long   '数据行高度
  129. Private Sub cmd_exit_Click()
  130.     Unload Me
  131. End Sub
  132. Private Sub Form_Load()
  133.     Me.Left = (Screen.Width - Me.Width) / 2
  134.     Me.Top = (Screen.Height - Me.Height) / 2
  135.     With vsflex1
  136.         .Rows = 7
  137.         .Cols = 3
  138.         .ScrollBars = flexScrollBarVertical
  139.         .TextMatrix(0, 0) = "凭证来源"
  140.         .TextMatrix(0, 1) = "制单日期"
  141.         .TextMatrix(0, 2) = "转帐编码"
  142.         SjhHeight = 250
  143.         .Width = 0
  144.         For jsq = 0 To .Cols - 1
  145.             .ColAlignment(jsq) = flexAlignCenterCenter
  146.             .ColWidth(jsq) = 1200
  147.             .Width = .Width + .ColWidth(jsq)
  148.         Next jsq
  149.         .Height = 0
  150.         For jsq = 0 To .Rows - 1
  151.             .RowHeight(jsq) = SjhHeight
  152.             .Height = .Height + .RowHeight(jsq)
  153.         Next jsq
  154.         .Height = .Height + 8
  155.     End With
  156.     Call NoSaveList
  157. End Sub
  158. Private Sub NoSaveList()
  159.     Dim RecTemp As New ADODB.Recordset
  160.     SqlStr = "Select * from Cwzz_AccVouchMainTemp Where VouchNo is Null and OperationNo='" & Trim(AutoTran_PzFrm.Lab_OperNum.Caption) & "' order by VouchId"
  161.     Set RecTemp = Cw_DataEnvi.DataConnect.Execute(SqlStr)
  162.     jsq = 1
  163.     Do While RecTemp.EOF = False
  164.         With vsflex1
  165.             If jsq > .Rows - 1 Then
  166.                 .AddItem ""
  167.                 .RowHeight(jsq) = SjhHeight
  168.             End If
  169.             vsflex1.TextMatrix(jsq, 0) = Trim(RecTemp.Fields("VouchSource") & "")
  170.             vsflex1.TextMatrix(jsq, 1) = Format(Trim(RecTemp.Fields("Ddate") & ""), "yyyy-mm-dd")
  171.             vsflex1.TextMatrix(jsq, 2) = Trim(RecTemp.Fields("BillNo") & "")
  172.         End With
  173.         RecTemp.MoveNext
  174.         jsq = jsq + 1
  175.         vsflex1.BackColorSel = &HFFFFFF
  176.         vsflex1.ForeColorSel = &H0&
  177.     Loop
  178. End Sub