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

企业管理

开发平台:

Visual Basic

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