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

企业管理

开发平台:

Visual Basic

  1. Attribute VB_Name = "XtjbModule"
  2. '系统基本模块(主要用来放置公用函数及模块)
  3.                 
  4. '系统信息
  5. Public XtMenuList As String    '系统菜单功能编码
  6. '系统日期
  7. Public Xtkjqjgs As Integer     '用户设定会计期间个数
  8. Public Xtyear As Integer       '用户进入系统选择年度
  9. Public Xtmm As Integer         '用户进入系统选择会计期间
  10. Public Xtrq As Date            '系统日期
  11. Public Xtrlbz As String        '系统日历标志
  12. '系统往返参数值
  13. Public Xtcdcs As String        '系统传递参数值(专门用来传递帮助信息)
  14. Public Xtcdcsfz As String      '系统传递参数值(辅助信息)
  15. Public Xtfhcs As String        '系统返回参数值(专门用来传递帮助信息)
  16. Public Xtfhcsfz As String      '系统返回参数值(辅助信息)
  17. '系统通用编码参照代码
  18. Public Xtbmczdm As String      '系统通用编码参照代码
  19. '(系统等待调用窗体)
  20. Public XtCxgnsm As String      '调用程序功能说明
  21. Public Xtczy As String         '系统使用操作员
  22. Public Xtczybm As String       '系统操作员编码
  23. Public Xtztbm As String        '系统帐套编码
  24. Public Xtdwm As String         '系统打开帐套单位
  25. '帐套基本参数
  26. Public Xtjezws As Integer      '金额总位数
  27. Public Xtslzws As Integer      '数量总位数
  28. Public Xtdjzws As Integer      '单价总位数
  29. Public Xtjexsws As Integer     '金额小数位数
  30. Public Xtslxsws As Integer     '数量小数位数
  31. Public Xtdjxsws As Integer     '单价小数位数
  32. Public XtSCurrCode As String   '本位币编码
  33. Public XtSCurrName As String   '本位币名称
  34. '其它全局变量
  35. Public Unload_TF As Boolean    '窗体是否卸载
  36. Public P_RecordCount As Integer '记录条数
  37. Public YesNo_str As String
  38. Public SsqlHelp As String
  39. Public P_Code As String: Public P_Name As String  '编码、名称
  40. Public AddExit_TF As Boolean '添加或编辑状态
  41. Public P_Ssql As String  'Sql 语句
  42. '引用API函数
  43. Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long
  44. Declare Function GetComputerName Lib "kernel32" Alias "GetComputerNameA" (ByVal lpBuffer As String, nSize As Long) As Long
  45. '======================以下为打印文本内容格式输出控制过程函数======================='
  46. Public Function Fun_FormatOutPut(InputText As String, OutPutLen As Integer) As String               '文本内容按一定标准格式输出(主要用于打印使用)
  47.   
  48.     '参数说明:InputText 需要格式化的文本内容 OutPutLen 输出文本占用长度(包括加空格)
  49.     Fun_FormatOutPut = Trim(InputText) + Space(OutPutLen - Strcdcs(Trim(InputText), OutPutLen))
  50.   
  51. End Function
  52. Public Function Strcdcs(Lrcsstr As String, Lrzdcd As Integer) As Integer                            '测量并限制字符串长度(汉字与字符区分)
  53.    
  54.     '参数说明:Lrcsstr 需要测量和限制输出的字符串 Lrzdcd 限制输出长度
  55.   
  56.     lrtextlong = Len(Trim(Lrcsstr))
  57.     lrcscd = 0
  58.     For jsqte = 1 To lrtextlong
  59.         lrcszf = Mid(Lrcsstr, jsqte, 1)
  60.         lrzzcd = lrcscd
  61.         If Asc(lrcszf) >= 0 And Asc(lrcszf) <= 255 Then
  62.             lrcscd = lrcscd + 1
  63.         Else
  64.             lrcscd = lrcscd + 2
  65.         End If
  66.         If lrcscd > Lrzdcd Then
  67.             lrstrjqcd = jsqte - 1
  68.             Lrcsstr = Mid(Lrcsstr, 1, lrstrjqcd)
  69.             Strcdcs = lrzzcd
  70.             Exit Function
  71.         Else
  72.             Strcdcs = lrcscd
  73.         End If
  74.     Next jsqte
  75. End Function
  76. '======================以下为文本录入内容格式输入控制过程函数======================='
  77. Public Sub Lrfzszxz(Sjwb As TextBox, lrzfasc As Integer)              '文本框录入整数值(负)限制
  78.    
  79.     '输入参数:sjwb 录入限制文本框 lrzfasc 用户录入字符Ascii码值
  80.     If Not ((lrzfasc >= Asc("0") And lrzfasc <= Asc("9")) Or lrzfasc = vbKeyBack Or (Chr(lrzfasc) = "-" And Sjwb.SelStart = 0)) Then
  81.         lrzfasc = 0
  82.     End If
  83. End Sub
  84. Public Sub Lrzszxz(lrzfasc As Integer)                                '文本框录入整数值(正)限制
  85.     '输入参数:lrzfasc 用户录入字符Ascii码值
  86.     If Not ((lrzfasc >= Asc("0") And lrzfasc <= Asc("9")) Or lrzfasc = vbKeyBack) Then
  87.         lrzfasc = 0
  88.     End If
  89. End Sub
  90. Public Sub Lrszzfxz(lrzfasc As Integer)                               '文本框录入数字及字符限制
  91.     
  92.     '输入参数:lrzfasc 用户录入字符Ascii码值
  93.     If Not ((lrzfasc >= Asc("0") And lrzfasc <= Asc("9")) Or (lrzfasc >= Asc("a") And lrzfasc <= Asc("z")) Or (lrzfasc >= Asc("A") And lrzfasc <= Asc("Z")) Or lrzfasc = vbKeyBack) Then
  94.         lrzfasc = 0
  95.     End If
  96. End Sub
  97. Public Sub Lrfhzxz(lrzfasc As Integer)                                '文本框录入非汉字限制
  98.     
  99.     '输入参数:lrzfasc 用户录入字符Ascii码值
  100.     If Not ((lrzfasc >= 0 And lrzfasc <= 255) Or lrzfasc = vbKeyBack) Then
  101.         lrzfasc = 0
  102.     End If
  103. End Sub
  104. Public Sub Lrrqxz(lrzfasc As Integer)                                 '文本框录入日期限制
  105.     
  106.     '输入参数:lrzfasc 用户录入字符Ascii码值
  107.     If Not ((lrzfasc >= Asc("0") And lrzfasc <= Asc("9")) Or Chr(lrzfasc) = "-" Or lrzfasc = vbKeyBack) Then
  108.         lrzfasc = 0
  109.     End If
  110.     
  111. End Sub
  112. Public Sub Lrxszxz(Sjwb As TextBox, lrzfasc As Integer)               '文本框录入带有小数位及正负号数值字段
  113.   
  114.     If Not ((Chr(lrzfasc) >= "0" And Chr(lrzfasc) <= "9") Or (Chr(lrzfasc) = "." And InStr(1, Sjwb.Text, ".") = 0) Or lrzfasc = vbKeyBack Or (Chr(lrzfasc) = "-" And Sjwb.SelStart = 0)) Then
  115.         lrzfasc = 0
  116.     End If
  117. End Sub
  118. Public Sub Lrxzszxz(Sjwb As TextBox, lrzfasc As Integer)              '文本框录入带有小数位正>=0数值字段
  119.     
  120.     If Not ((Chr(lrzfasc) >= "0" And Chr(lrzfasc) <= "9") Or (Chr(lrzfasc) = "." And InStr(1, Sjwb.Text, ".") = 0) Or lrzfasc = vbKeyBack) Then
  121.         lrzfasc = 0
  122.     End If
  123. End Sub
  124. Public Sub Sjgskz(Sjwb As TextBox, zsws As Integer, xsws As Integer)  '保证数值录入字段录入格式
  125.     '输入参数:sjwb 录入限制文本框 zsws 数值录入限制整数位数 xsws 数值录入限制小数位数
  126.    
  127.     Dim xsdwz%, bccrd%
  128.     xsdwz = InStr(1, Sjwb.Text, ".")
  129.     bccrd = Sjwb.SelStart
  130.     If xsdwz = 0 Then
  131.         Sjwb.Text = Mid(Sjwb.Text, 1, zsws)
  132.         Sjwb.SelStart = bccrd
  133.         Exit Sub
  134.     End If
  135.     If zsws > xsdwz - 1 Then
  136.         Zswstr = Mid(Sjwb, 1, xsdwz - 1)
  137.     Else
  138.         Zswstr = Mid(Sjwb, 1, zsws)
  139.     End If
  140.     xswstr = Mid(Sjwb, xsdwz + 1, xsws)
  141.     Sjwb = Zswstr + "." + xswstr
  142.     Sjwb.SelStart = bccrd
  143. End Sub
  144. Public Sub InputFieldLimit(Ydtextte As TextBox, Zdsjlxte As Integer, keyasciite As Integer)     '录入字段事中控制程序
  145.     '函数参数:录入限制文本框,字段数据类型,录入字符
  146.     Select Case Zdsjlxte
  147.         Case 1                                  '1-录入(Ascii0-255)
  148.             Call Lrfhzxz(keyasciite)
  149.         Case 2
  150.             Call Lrszzfxz(keyasciite)             '2-录入(0-9,a-z,A-Z)
  151.         Case 3
  152.             Call Lrfzszxz(Ydtextte, keyasciite)   '3-录入整数值(正负)
  153.         Case 4
  154.             Call Lrzszxz(keyasciite)              '4-录入整数值(正)
  155.         Case 5, 8, 9
  156.             Call Lrxszxz(Ydtextte, keyasciite)    '5-录入小数值(正负) 8-金额型(正负) 9-数量型(正负)
  157.         Case 6, 10, 11, 12
  158.             Call Lrxzszxz(Ydtextte, keyasciite)   '6-录入小数值(正) 10-单价型 11-金额型(正) 12-数量型(正)
  159.         Case 7
  160.             Call Lrrqxz(keyasciite)               '7-录入日期
  161.     End Select
  162. End Sub
  163. '==============================================================================='
  164. Public Function Xtxxts(xttsxx As String, xttslb As Integer, Tbtslb As Integer)          '系统信息提示
  165.     
  166.     msgtitle = "百利/ERP5.0-电子报表"
  167.     Select Case xttslb
  168.         Case 0    '确定
  169.             Xtxxts = MsgBox(xttsxx, Tbtslb * 16, msgtitle)
  170.         Case 1    'YES/NO
  171.            Xtxxts = MsgBox(xttsxx, vbYesNo + Tbtslb * 16, msgtitle)
  172.         Case 2    '确定/取消
  173.            Xtxxts = MsgBox(xttsxx, vbOKCancel + Tbtslb * 16, msgtitle)
  174.         Case Else
  175.            Xtxxts = "9"
  176.     End Select
  177. End Function
  178. Public Function Kjjdzy(Zyjdzs As Integer) As Boolean                                    '控件焦点转移(针对回车键)
  179.     
  180.     Kjjdzy = False
  181.     
  182.     On Error GoTo Cwcl
  183.     
  184.     If Screen.ActiveControl.TabIndex <= Zyjdzs - 1 Then
  185.         Kjjdzy = True
  186.         SendKeys "{tab}"
  187.     End If
  188.     Exit Function
  189. Cwcl:
  190.     Resume Next         '有些对象不支持TabIndex属性
  191. End Function
  192. Public Sub Pbwxzf(Zfc As Integer)                                                       '录入时屏蔽"'"
  193.     
  194.     If Chr(Zfc) = "'" Then
  195.         Zfc = 0
  196.     End If
  197. End Sub
  198. '======================以下为对网格操作基本函数========================'
  199. Public Sub BzWgcsh(Xsgrid As vsFlexGrid, Wgdmte As String, GridInf() As Variant, GridBoolean() As Boolean, GridInt() As Integer, GridStr() As String)          '标准网格初始化模块
  200.   
  201.     '过程参数为:Xsgrid 生成网格对象名称,Wgdmte 网格参数编码,GridInf()返回网格设置信息(返回整体信息)
  202.     'GridBoolean() 网格列属性(返回布尔型信息),GridInt() 网格列属性(返回整型信息),GridStr() 网格列属性(返回字符型信息)
  203.       
  204.     Dim wglbt() As String                      '网格显示列标题
  205.     Dim Wgxsls As Long                         '网格显示(主操作)列数
  206.     Dim gdls As Long                           '网格固定列数
  207.     Dim Gdhs As Long                           '网格固定行数(标题行数)
  208.     Dim Gdhgd As Double                        '网格固定行高度
  209.     Dim wglkd() As Double                      '每列默认字符个数
  210.     Dim wglzz() As Integer                     '网格列组织形式
  211.     Dim zdxsgs() As String                     '数值字段显示格式
  212.     Dim Sfhide() As Boolean                    '网格列是否隐藏
  213.     Dim Sfhxz As Boolean                       '网格列是否行选中
  214.     Dim Qslz As Long                           '网格隐藏(非操作显示)列数
  215.     Dim Sjhgd As Double                        '网格数据行高度
  216.     Dim Wglsfkydpx As Integer                  '网格列是否可移动及排序
  217.     Dim wgxsrec As New ADODB.Recordset         '网格显示动态集
  218.     
  219.     ReDim GridInf(1 To 7)                      '整个网格设置信息
  220.     Set wgxsrec = Cw_DataEnvi.dataconnect.Execute("SELECT * FROM xt_grid WHERE Grid_Code ='" + Wgdmte + "' ORDER BY ColId")
  221.     With wgxsrec
  222.         If .EOF And .BOF Then
  223.             Exit Sub
  224.         Else
  225.             .MoveFirst
  226.         End If
  227.    
  228.         '如果网格为单据则设置网格大小、位置
  229.         If .Fields("GridType") = 1 Then
  230.             Xsgrid.Height = .Fields("GridHeight") '网格高度
  231.             Xsgrid.Width = .Fields("Gridwidth")   '网格宽度
  232.             Xsgrid.Top = .Fields("GridTop")       '网格上边距
  233.             Xsgrid.Left = .Fields("GridLeft")     '网格左边距
  234.         End If
  235.    
  236.         Qslz = .Fields("BeginCol")                '网格隐藏(非操作显示)列数
  237.         Sjhgd = .Fields("DataRowHeight")          '网格数据行高度
  238.    
  239.         GridInf(1) = Qslz                         '起始列值
  240.         GridInf(2) = Sjhgd                        '数据行高度
  241.         GridInf(3) = .Fields("KeepDataRows")      '屏幕保持数据行数
  242.         GridInf(4) = .Fields("AssistantRows")     '辅助项网格行数(例如:合计行)
  243.         If .Fields("SaveHelpWidth_Flag") Then     '是否保留帮助宽度(字段提供帮助时,是否为按钮保留空间)
  244.             GridInf(5) = True
  245.         Else
  246.             GridInf(5) = False
  247.         End If
  248.         If .Fields("DeleteRowAsk_Flag") Then      '删除有效记录行是否提示
  249.             GridInf(6) = True
  250.         Else
  251.             GridInf(6) = False
  252.         End If
  253.         If .Fields("ShowSumGrid_Flag") Then       '是否显示合计网格
  254.             GridInf(7) = True
  255.         Else
  256.             GridInf(7) = False
  257.         End If
  258.       
  259.         Wgxsls = .RecordCount - 1                 '网格显示(主操作)列数(原.Fields("wgxsls"))
  260.         gdls = .Fields("FixCols")                 '网格固定列数
  261.         Gdhs = .Fields("FixRows")                 '网格固定行数(标题行数)
  262.         Gdhgd = .Fields("FixRowHeight")           '网格固定行高度
  263.         Wglsfkydpx = .Fields("explorerbar")       '网格列是否可移动及排序
  264.    
  265.         If .Fields("SelectRow_Flag") Then         '是否行选中
  266.             Sfhxz = True
  267.         End If
  268.    
  269.         ReDim wglbt(Gdhs - 1, Wgxsls + Qslz - 1)  '网格显示列标题
  270.         ReDim wglkd(Qslz + Wgxsls - 1)            '每列默认字符个数
  271.         ReDim zdxsgs(Qslz + Wgxsls - 1)           '数值字段标志
  272.         ReDim wglzz(Qslz + Wgxsls - 1)            '网格列组织形式
  273.         ReDim Sfhide(Qslz + Wgxsls - 1)           '网格列是否显示
  274.         ReDim GridBoolean(Qslz + Wgxsls - 1, 1 To 6)   '网格列属性(布尔型)
  275.         ReDim GridStr(Qslz + Wgxsls - 1, 1 To 20)      '网格列信息(字符型)
  276.         ReDim GridInt(Qslz + Wgxsls - 1, 1 To 7)       '网格列信息(整型)
  277.    
  278.         .MoveNext
  279.         jsqte = 0
  280.         
  281.         Do While Not .EOF
  282.             wglkd(Qslz + jsqte) = .Fields("ColWidth")                  '网格列宽度限制
  283.             If Not IsNull(.Fields("ColTitle1")) Then
  284.                 wglbt(0, Qslz + jsqte) = Trim(.Fields("ColTitle1"))      '网格列标题1
  285.             End If
  286.             If Not IsNull(.Fields("ColTitle2")) And Gdhs >= 2 Then     '网格列标题2
  287.                 wglbt(1, Qslz + jsqte) = Trim(.Fields("ColTitle2"))
  288.             End If
  289.             If Not IsNull(.Fields("ColTitle3")) And Gdhs >= 3 Then     '网格列标题3
  290.                 wglbt(2, Qslz + jsqte) = Trim(.Fields("ColTitle3"))
  291.             End If
  292.             If .Fields("ColFormat") Then                               '字段显示格式(千分符)
  293.                 If .Fields("Text_Int_Length") <> 0 Then
  294.                     zdxsgs(Qslz + jsqte) = "#,##0." + String(.Fields("Text_deci_Length"), "0")
  295.                 Else
  296.                     zdxsgs(Qslz + jsqte) = "#,##0.00"
  297.                 End If
  298.                 Select Case .Fields("Text_Data_Type")
  299.                     Case 8, 11  '金额
  300.                         zdxsgs(Qslz + jsqte) = "#,##0." + String(Xtjexsws, "0")
  301.                     Case 9, 12  '数量
  302.                         zdxsgs(Qslz + jsqte) = "#,##0." + String(Xtslxsws, "0")
  303.                     Case 10     '单价
  304.                         zdxsgs(Qslz + jsqte) = "#,##0." + String(Xtdjxsws, "0")
  305.                 End Select
  306.             Else
  307.                 If .Fields("Text_Int_Length") <> 0 Then
  308.                     zdxsgs(Qslz + jsqte) = "##0." + String(.Fields("Text_deci_Length"), "0")
  309.                 End If
  310.             End If
  311.             wglzz(Qslz + jsqte) = .Fields("ColAlignment")              '网格列组织形式
  312.             
  313.             If .Fields("ColHidden") Then                               '网格列是否隐藏
  314.                 Sfhide(Qslz + jsqte) = True
  315.             End If
  316.             If .Fields("Edit_Flag") Then                               '网格列是否可编辑
  317.                 GridBoolean(Qslz + jsqte, 1) = True
  318.             End If
  319.             If .Fields("Help_Flag") Then                               '网格列是否提供帮助
  320.                 GridBoolean(Qslz + jsqte, 2) = True
  321.             End If
  322.             If .Fields("Combo_Flag") Then                              '网格列是否列表框录入
  323.                 GridBoolean(Qslz + jsqte, 3) = True
  324.             End If
  325.             If .Fields("ColSum_Flag") Then                             '网格列是否合计
  326.                 GridBoolean(Qslz + jsqte, 4) = True
  327.             End If
  328.             If .Fields("Zero_Empty_Flag") Then                         '网格内容为零是否清空
  329.                 GridBoolean(Qslz + jsqte, 5) = True
  330.             End If
  331.             If .Fields("BooleanFlag") Then                             '网格列是否为布尔型
  332.                 GridBoolean(Qslz + jsqte, 6) = True
  333.             End If
  334.             If Not IsNull(.Fields("Text_Data_Type")) Then              '字段数据类型
  335.                 GridInt(Qslz + jsqte, 1) = .Fields("Text_Data_Type")
  336.             End If
  337.             If Not IsNull(.Fields("Text_Length")) Then                 '字段录入长度
  338.                 GridInt(Qslz + jsqte, 2) = .Fields("Text_Length")
  339.             End If
  340.             If Not IsNull(.Fields("Text_Int_Length")) Then             '字段整数位长度
  341.                 GridInt(Qslz + jsqte, 3) = .Fields("Text_Int_Length")
  342.             End If
  343.             If Not IsNull(.Fields("Text_Deci_Length")) Then            '字段小数位长度
  344.                 GridInt(Qslz + jsqte, 4) = .Fields("Text_Deci_Length")
  345.             End If
  346.             If Not IsNull(.Fields("NotAllowEmpty_Type")) Then          '字段不允许为空或为零
  347.                 GridInt(Qslz + jsqte, 5) = .Fields("NotAllowEmpty_Type")
  348.             End If
  349.             If Not IsNull(.Fields("Help_Type")) Then                   '帮助类型
  350.                 GridInt(Qslz + jsqte, 6) = .Fields("Help_Type")
  351.             End If
  352.             If Not IsNull(.Fields("HelpReturnValue")) Then             '帮助返回值(0-显示返回编码 1-显示返回名称)
  353.                 GridInt(Qslz + jsqte, 7) = .Fields("HelpReturnValue")
  354.             End If
  355.             GridStr(Qslz + jsqte, 1) = Trim(.Fields("ColIndex") & "")    '网格列索引值
  356.             GridStr(Qslz + jsqte, 2) = Trim(.Fields("EmptyMessage") & "") '字段为空提示信息
  357.             GridStr(Qslz + jsqte, 3) = Trim(.Fields("Help_Code") & "")    '通用帮助编码
  358.             GridStr(Qslz + jsqte, 4) = Trim(.Fields("FieldsName") & "")   '连接字段(通用帮助)
  359.             GridStr(Qslz + jsqte, 5) = Trim(.Fields("Combo_Code") & "")   '列表框编码
  360.     
  361.             .MoveNext
  362.             jsqte = jsqte + 1
  363.         Loop
  364.     End With
  365.    
  366.     '网格列组织形式
  367.    
  368.     With Xsgrid
  369.         .BackColorFixed = &H8000000F                                     '固定行背景色
  370.         .FixedRows = Gdhs                                                '固定行数
  371.         .Rows = Gdhs
  372.         .Cols = Qslz + Wgxsls
  373.         .FixedCols = gdls                                                '固定列数
  374.         .AllowUserResizing = flexResizeBoth
  375.         .MergeCells = flexMergeFixedOnly                                 '合并单元形式
  376.         If Sfhxz Then
  377.             .SelectionMode = flexSelectionByRow
  378.         Else
  379.             .FocusRect = flexFocusHeavy
  380.             .ForeColorSel = &H80000008
  381.             .BackColorSel = &H80000005
  382.         End If
  383.         .ExplorerBar = Wglsfkydpx                                        '网格列是否可移动及排序
  384.         .ScrollTips = True
  385.         .WordWrap = True
  386.      
  387.         '填 充 网 格 标 题
  388.         For Rowjsq = 0 To .FixedRows - 1
  389.             .MergeRow(Rowjsq) = True
  390.             .RowHeight(Rowjsq) = Gdhgd
  391.             For Coljsq = Qslzte To .Cols - 1
  392.                 .TextMatrix(Rowjsq, Coljsq) = wglbt(Rowjsq, Coljsq)
  393.                 Next Coljsq
  394.         Next Rowjsq
  395.      
  396.        '数 据 网 格 高 度
  397.        For Rowjsq = .FixedRows To .Rows - 1
  398.            .RowHeight(Rowjsq) = Sjhgd
  399.        Next Rowjsq
  400.        '定 义 录 入 字 段 属 性
  401.        For Coljsq = 0 To .Cols - 1
  402.            If Coljsq < Qslz Or Sfhide(Coljsq) Then
  403.                .ColHidden(Coljsq) = True
  404.            Else
  405.                .ColHidden(Coljsq) = False
  406.            End If
  407.            .MergeCol(Coljsq) = True
  408.            .ColWidth(Coljsq) = wglkd(Coljsq)
  409.            .ColAlignment(Coljsq) = wglzz(Coljsq)
  410.            If Len(zdxsgs(Coljsq)) <> 0 Then
  411.                .ColFormat(Coljsq) = zdxsgs(Coljsq)
  412.            End If
  413.            If GridBoolean(Coljsq, 6) Then
  414.                .ColDataType(Coljsq) = flexDTBoolean
  415.            End If
  416.            .FixedAlignment(Coljsq) = 4
  417.        Next Coljsq
  418.    End With
  419. End Sub
  420. Public Sub Bcwggs(Bcgsgrid As vsFlexGrid, Wggsdm As String, GridStr() As String)            '保存网格格式(包括网格列宽,网格列顺序)
  421.   
  422.     '过程参数:Bcgsgrid 保存格式网格对象,Wggsdm 网格格式代码(网格参数),GridStr() 从中取网格列索引信息
  423.   
  424.     Dim RecTemp As New ADODB.Recordset               '临时使用动态集
  425.     Dim Qslzte As Integer                            '起始列值
  426.     Dim Tsxx As String                               '系统信息提示
  427.   
  428.     Cw_DataEnvi.dataconnect.BeginTrans
  429.     On Error GoTo Swcwcl
  430.     If RecTemp.State = 1 Then RecTemp.Close
  431.     RecTemp.Open "select * from xt_grid where Grid_Code='" + Trim(Wggsdm) + "' order by ColId", Cw_DataEnvi.dataconnect, adOpenDynamic, adLockOptimistic
  432.     With RecTemp
  433.         If Not .EOF Then
  434.             Qslzte = .Fields("BeginCol")
  435.             .MoveNext
  436.         End If
  437.     
  438.         Do While Not .EOF
  439.             For jsqte = Qslzte To Bcgsgrid.Cols - 1
  440.                 If Trim(.Fields("ColIndex")) = Trim(GridStr(jsqte, 1)) Then
  441.                     Exit For
  442.                 End If
  443.             Next jsqte
  444.             If jsqte <= Bcgsgrid.Cols - 1 Then
  445.                 .Fields("ColId") = jsqte - Qslzte + 1
  446.                 .Fields("ColWidth") = Bcgsgrid.ColWidth(jsqte)
  447.                 .Update
  448.             End If
  449.             .MoveNext
  450.         Loop
  451.     End With
  452.   
  453.     Cw_DataEnvi.dataconnect.CommitTrans
  454.   
  455.     Tsxx = "表格格式保存完毕!"
  456.     Call Xtxxts(Tsxx, 0, 4)
  457.     Exit Sub
  458. Swcwcl:
  459.     Cw_DataEnvi.dataconnect.RollbackTrans
  460.     Tsxx = "存盘过程中出现未知错误,程序自动恢复保存前状态!"
  461.     Call Xtxxts(Tsxx, 0, 1)
  462.     Exit Sub
  463. End Sub
  464. Public Sub Hfmrgs(Bcgsgrid As vsFlexGrid, Wggsdm As String, GridStr() As String)            '恢复网格默认列宽
  465.     
  466.     '过程参数:保存格式网格对象,网格格式代码(网格参数),GridStr() 从中取网格列索引信息
  467.     Dim RecTemp As New ADODB.Recordset   '临时使用动态集
  468.     Dim Qslzte As Integer                '起始列值
  469.     Dim Tsxx As String                   '系统提示信息
  470.   
  471.     Cw_DataEnvi.dataconnect.BeginTrans
  472.     If RecTemp.State = 1 Then RecTemp.Close
  473.     RecTemp.Open "select * from xt_grid where Grid_Code='" + Trim(Wggsdm) + "' order by ColId", Cw_DataEnvi.dataconnect, adOpenDynamic, adLockOptimistic
  474.     
  475.     On Error GoTo Swcwcl
  476.   
  477.     With RecTemp
  478.         If Not .EOF Then
  479.             Qslzte = .Fields("BeginCol")
  480.             .MoveNext
  481.         End If
  482.         Do While Not .EOF
  483.             For jsqte = Qslzte To Bcgsgrid.Cols - 1
  484.                 If Trim(.Fields("ColIndex")) = Trim(GridStr(jsqte, 1)) Then
  485.                     Exit For
  486.                 End If
  487.             Next jsqte
  488.             If jsqte <= Bcgsgrid.Cols - 1 Then
  489.                 Bcgsgrid.ColWidth(jsqte) = .Fields("DefaultColWidth")
  490.                 .Fields("ColWidth") = .Fields("DefaultColWidth") + 0
  491.                 .Update
  492.             End If
  493.             .MoveNext
  494.         Loop
  495.     End With
  496.     Cw_DataEnvi.dataconnect.CommitTrans
  497.     Exit Sub
  498. Swcwcl:
  499.     Cw_DataEnvi.dataconnect.RollbackTrans
  500.     Tsxx = "恢复过程中出现未知错误,程序自动恢复保存前状态!"
  501.     Call Xtxxts(Tsxx, 0, 1)
  502.     Exit Sub
  503. End Sub
  504. Public Sub Szxsxm(SzgsGrid As vsFlexGrid, Wggsdm As String)        '设置网格显示项目
  505.    
  506.     '过程参数:调整显示项目网格对象,网格格式代码(网格参数)
  507.     Xtcdcs = Wggsdm
  508.     XT_BgxsxmszFrm.Show 1                '调整网格显示项目
  509.     Call Cxxswg(SzgsGrid, Wggsdm)        '重新定义网格显示
  510. End Sub
  511. Public Sub Cxxswg(Bcgsgrid As vsFlexGrid, Wggsdm As String)        '根据用户定义显示项目重新显示网格
  512.   
  513.     '过程参数:调整显示项目网格对象,网格格式代码(网格参数)
  514.   
  515.     Dim RecTemp As New ADODB.Recordset   '查询数据表动态集
  516.     Dim Qslzte As Integer
  517.     Dim Tsxx As String
  518.     Set RecTemp = Cw_DataEnvi.dataconnect.Execute("select * from xt_grid where Grid_Code='" + Trim(Wggsdm) + "' order by ColId")
  519.     With RecTemp
  520.         If Not .EOF Then
  521.             Qslzte = .Fields("BeginCol")
  522.             .MoveNext
  523.         End If
  524.         Do While Not .EOF
  525.             For jsqte = Qslzte To Bcgsgrid.Cols - 1
  526.                 If Bcgsgrid.FixedRows = 1 Then
  527.                     If Trim(.Fields("ColTitle1")) = Trim(Bcgsgrid.TextMatrix(0, jsqte)) Then
  528.                         Exit For
  529.                     End If
  530.                 Else
  531.                     If Trim(.Fields("ColTitle1")) = Trim(Bcgsgrid.TextMatrix(0, jsqte)) And Trim(.Fields("ColTitle2")) = Trim(Bcgsgrid.TextMatrix(1, jsqte)) Then
  532.                         Exit For
  533.                     End If
  534.                 End If
  535.             Next jsqte
  536.             If jsqte <= Bcgsgrid.Cols - 1 Then
  537.                 If .Fields("ColHidden") Then
  538.                     Bcgsgrid.ColHidden(jsqte) = True
  539.                 Else
  540.                     Bcgsgrid.ColHidden(jsqte) = False
  541.                 End If
  542.             End If
  543.             .MoveNext
  544.         Loop
  545.     End With
  546. End Sub
  547. Public Function Sydz(Zdbmte As String, GridStr() As String, Szzls As Integer) As Integer   '网格索引对照表(用来对照网格物理与逻辑顺序关系)
  548.     
  549.     '函数参数:索引编码,网格列属性(字符型),网格列最大数组下标值
  550.     Sydz = 0
  551.     For jsqte = 0 To Szzls
  552.         If Trim(GridStr(jsqte, 1)) = Zdbmte Then
  553.             Sydz = jsqte
  554.             Exit Function
  555.         End If
  556.     Next jsqte
  557. End Function
  558. Public Function FnBln_RefreshArray(int_StartCol As Long, int_FinishCol As Long, GridStr() As String, GridInf()) As Boolean     '网格列交换后数组做相应变换函数
  559.   
  560.     '功能: 实现网格的列移动
  561.     '说明:本函数是在模式工程的基础上创建的,请确认你的窗体中的网格是通过
  562.     '     BzWgcsh(CxbbGrid, GridCode, GridInf(), GridBoolean(), GridInt(), GridStr()) 函数来定义的
  563.     '参数:int_StartCol——网格开始移动列
  564.     '参数:int_FinishCol——网格移动结束列
  565.     '参数:GridStr()——网格的信息数组
  566.     '思路:对于要移动的网格来说,所有的信息都保存在几个系统数组中,其中GridStr()数组保存着逻辑定位和
  567.     '      物理定位之间的转换关系,使我们可以通过逻辑值找到物理值,由于我们通常通过逻辑值来定位网格的
  568.     '      物理列(sydz(zdbmte as String,GridStr() as String,szzls as Integer)函数),所以我们只需要
  569.     '      改变GridStr()数组中物理列和逻辑列之间的对应关系,从而达到改变列的目的。
  570.     '扩展:虽然本程序只是针对数据显示网格而作,但是此程序给大家提供了一个思路,通过交换GridBoolean()、
  571.     '      GridInt()、网格列标题wglbt()等数组,就可以实现输入的列移动
  572.   
  573.     On Error GoTo Err_Ctrl
  574.  
  575.     Dim int_temp As Integer
  576.     Dim Str_Temp() As String '用来保存移动开始列的GridStr()信息
  577.     Dim i, j As Long
  578.   
  579.     '如果结束列小于用户定义网格开始列,则结束列=用户定义网格开始列
  580.     '因为开始列以前的列都是隐藏列,由于要把当前开始移动列移动到隐藏列上
  581.     '所以控件自动把隐藏列变为显示列,这样在刷新数据时,会把隐藏列上的数据
  582.     '显示出来,并且,由于开始列以前的隐藏列在XT_Grid中,不对应逻辑值,所以在保存
  583.     '网格格式时会出错
  584.     If int_StartCol > int_FinishCol Then
  585.         If int_FinishCol < GridInf(1) Then int_FinishCol = GridInf(1)
  586.     Else
  587.         If Col < GridInf(1) Then Col = GridInf(1)
  588.     End If
  589.   
  590.     '保存移动开始列的GridStr()信息
  591.     ReDim Str_Temp(0, UBound(GridStr, 2))
  592.     For j = 1 To UBound(GridStr, 2)
  593.         Str_Temp(0, j) = GridStr(int_StartCol, j)
  594.     Next
  595.     
  596.     '[[在此加入你的代码,保存当前开始移动列的其他信息]]
  597.     '依次移动各列的信息
  598.     If int_StartCol < int_FinishCol Then
  599.         For i = int_StartCol To int_FinishCol - 1
  600.             For j = 1 To UBound(GridStr, 2)
  601.                 GridStr(i, j) = GridStr(i + 1, j)
  602.             Next j
  603.         Next i
  604.     Else
  605.         For i = int_StartCol To int_FinishCol + 1 Step -1
  606.             For j = 1 To UBound(GridStr, 2)
  607.                 GridStr(i, j) = GridStr(i - 1, j)
  608.             Next j
  609.         Next i
  610.     End If
  611.     
  612.     '[[在此加入你的代码,依照上面的代码格式,移动列的其他信息]]
  613.     '恢复开始移动列的信息到结束列上
  614.     For j = 1 To UBound(GridStr, 2)
  615.         GridStr(int_FinishCol, j) = Str_Temp(0, j)
  616.     Next j
  617.   
  618.     '[[在此加入你的代码,恢复开始移动列的其他信息到结束列上]]
  619.     FnBln_RefreshArray = True
  620.     Exit Function
  621. Err_Ctrl:
  622.     FnBln_RefreshArray = False
  623. End Function
  624. '========================以上为网格操作基本函数==============================='
  625. Public Sub Drwbkxx(Wbklrbmte As String, Textvar() As Variant, Textboolean() As Boolean, Textint() As Integer, Textstr() As String)   '读入文本框录入信息
  626.    
  627.     '过程参数:输入参数 Wbklrbmte 文本框录入信息组索引号
  628.     '         输出参数 Textvar() Textboolean() Textint() Textstr 文本框信息
  629.    
  630.     Dim Wbklrbrec As ADODB.Recordset      '文本框录入表动态集
  631.     Dim Zdszxb As Integer                 '最大数组下标
  632.     Dim text_indexte As Integer           '文本框索引值
  633.    
  634.     ReDim Textvar(1 To 1)
  635.     Set Wbklrbrec = Cw_DataEnvi.dataconnect.Execute("SELECT * FROM Xt_text_input WHERE Text_Group_Code ='" + Wbklrbmte + "' ORDER BY Text_index")
  636.     With Wbklrbrec
  637.         If Not (.BOF And .EOF) Then
  638.             .MoveLast
  639.             Zdszxb = .Fields("text_index")
  640.             Textvar(1) = Zdszxb
  641.             ReDim Textboolean(0 To Zdszxb, 1 To 5)
  642.             ReDim Textint(0 To Zdszxb, 1 To 14)
  643.             ReDim Textstr(0 To Zdszxb, 1 To 7)
  644.             .MoveFirst
  645.         Else
  646.             Exit Sub
  647.         End If
  648.         Do While Not .EOF
  649.             text_indexte = .Fields("text_index")
  650.             
  651.             If .Fields("help_flag") Then                                 '是否提供帮助
  652.                 Textboolean(text_indexte, 1) = True
  653.             End If
  654.             If .Fields("Help_ManuFlag") Then                             '手工设置帮助按钮
  655.                 Textboolean(text_indexte, 3) = True
  656.             End If
  657.             If .Fields("Visible") Then                                   '文本框是否显示
  658.                 Textboolean(text_indexte, 4) = True
  659.             End If
  660.             If .Fields("Enabled") Then                                   '文本框是否可编辑
  661.                 Textboolean(text_indexte, 5) = True
  662.             End If
  663.       
  664.             If Not IsNull(.Fields("text_data_type")) Then                '字段数据类型
  665.                 Textint(text_indexte, 1) = .Fields("text_data_type")
  666.             End If
  667.             If Not IsNull(.Fields("help_type")) Then                     '帮助类型
  668.                 Textint(text_indexte, 2) = .Fields("help_type")
  669.             End If
  670.             If Not IsNull(.Fields("show_code_name")) Then                '帮助返回值显示类型
  671.                 Textint(text_indexte, 3) = .Fields("show_code_name")
  672.             End If
  673.             If Not IsNull(.Fields("judge_type")) Then                    '有效性判断类型
  674.                 Textint(text_indexte, 4) = .Fields("judge_type")
  675.             End If
  676.             If Not IsNull(.Fields("text_length")) Then                   '字段录入长度
  677.                 Textint(text_indexte, 5) = .Fields("text_length")
  678.             End If
  679.             If Not IsNull(.Fields("text_int_length")) Then               '数值字段整数位长度
  680.                 Textint(text_indexte, 6) = .Fields("text_int_length")
  681.             End If
  682.             If Not IsNull(.Fields("text_deci_length")) Then              '数值字段小数位长度
  683.                 Textint(text_indexte, 7) = .Fields("text_deci_length")
  684.             End If
  685.             If Not IsNull(.Fields("NotAllowEmpty_Type")) Then            '字段不允许为空或为零
  686.                 Textint(text_indexte, 8) = .Fields("NotAllowEmpty_Type")
  687.             End If
  688.             If Not IsNull(.Fields("Judge_Time")) Then                    '文本框有效性判断时刻
  689.                 Textint(text_indexte, 9) = .Fields("Judge_Time")
  690.             End If
  691.             If Not IsNull(.Fields("TextHeight")) Then                    '文本框高度
  692.                 Textint(text_indexte, 10) = .Fields("TextHeight")
  693.             End If
  694.             If Not IsNull(.Fields("TextWidth")) Then                     '文本框宽度
  695.                 Textint(text_indexte, 11) = .Fields("TextWidth")
  696.             End If
  697.             If Not IsNull(.Fields("TextTop")) Then                       '文本框距离顶端高度
  698.                 Textint(text_indexte, 12) = .Fields("TextTop")
  699.             End If
  700.             If Not IsNull(.Fields("TextLeft")) Then                      '文本框左端距离
  701.                 Textint(text_indexte, 13) = .Fields("TextLeft")
  702.             End If
  703.             If Not IsNull(.Fields("TabIndex")) Then                      '文本框焦点顺序
  704.                 Textint(text_indexte, 14) = .Fields("TabIndex")
  705.             End If
  706.          
  707.             Textstr(text_indexte, 1) = Trim(.Fields("text_index") & "")       '文本框对应索引值
  708.             Textstr(text_indexte, 2) = Trim(.Fields("text_field_code") & "")  '文本框对应编码字段
  709.             Textstr(text_indexte, 3) = Trim(.Fields("text_field_name") & "")  '文本框对应名称字段
  710.             Textstr(text_indexte, 4) = Trim(.Fields("help_code") & "")        '通用帮助编码
  711.             Textstr(text_indexte, 5) = Trim(.Fields("judge_base") & "")       '字段有效性判断依据
  712.             Textstr(text_indexte, 6) = Trim(.Fields("error_message") & "")    '字段录入错误提示信息
  713.             Textstr(text_indexte, 7) = Trim(.Fields("text_name") & "")        '文本框名称
  714.                
  715.             .MoveNext
  716.         Loop
  717.     End With
  718. End Sub
  719. Public Function Mmjm(Srmm As String) As String                                              '密码加密对照模块
  720.    
  721.     Dim Zfcte As Integer
  722.     Mmjm = ""
  723.     For jsqte = 1 To Len(Srmm)
  724.         Zfcte = Asc(Mid(Srmm, jsqte, 1)) + Asc(Mid(Srmm, Len(Srmm) - jsqte + 1, 1)) + Len(Srmm) + jsqte
  725.         Mmjm = Mmjm + Trim(Str(Zfcte))
  726.     Next jsqte
  727. End Function
  728. Public Sub F1bz()                                                                           '发送F1键
  729.     SendKeys "{F1}"
  730. End Sub
  731. Public Sub Textyx(Textte As TextBox)                                                        '文本框有效
  732.     
  733.     Textte.Enabled = True
  734.     Textte.BackColor = &H80000005
  735. End Sub
  736. Public Sub Textwx(Textte As TextBox)                                                        '文本框无效
  737.    
  738.     Textte.Enabled = False
  739.     Textte.BackColor = &HC0C0C0
  740. End Sub
  741. Public Sub Drbmhelp(bzlx As Integer, Helpbm As String, Scdwnr As String)                    '调入编码参照窗体
  742.     
  743.     '函数参数:帮助类型(0-通用型 1-日期型 2-特殊型),帮助编码,首次定位内容
  744.     Dim XT_TybmczFrmte As New XT_TybmczFrm
  745.     
  746.     On Error GoTo ErrHandle
  747.     Xtcdcs = Scdwnr
  748.     Xtfhcs = ""
  749.     Xtfhcsfz = ""
  750.     Select Case bzlx
  751.         Case 0
  752.             Xtbmczdm = Trim(Helpbm)
  753.             XT_TybmczFrmte.Show 1
  754.             Xtbmczdm = ""
  755.         Case 1
  756.             XT_calendar.Show 1
  757.         Case 2
  758.             Select Case Helpbm
  759.             
  760.             End Select
  761.     End Select
  762.     
  763. ErrHandle:
  764. End Sub
  765. Public Sub Drbmbj(Helpbm As String)                                                         '调入编码参照编辑窗体
  766.     
  767.     Select Case Helpbm
  768.         'Case "gy_dept"             '部门编辑
  769.         'JC_BmszFrm.Show 1
  770.    End Select
  771. End Sub
  772. '===================以下为固定项列表框处理函数========================'
  773. Public Function FillCombo(Combote As ComboBox, Lbkbmte As String, Dwnr As String, AddType As Integer) As String   '填充列表框并定位
  774.     '函数参数:列表框,列表框分组编码,定位内容,填充类型(0-无空记录  1-有空记录(1个空格) )
  775.     Dim Lbknrrec As ADODB.Recordset
  776.   
  777.     '填充列表框内容
  778.     Set Lbknrrec = Cw_DataEnvi.dataconnect.Execute("select * from xt_combolist where combo_code='" + Trim(Lbkbmte) + "' order by item_index")
  779.     Combote.Clear
  780.     If AddType = 1 Then
  781.         Combote.AddItem " "
  782.     End If
  783.     With Lbknrrec
  784.         Do While Not .EOF
  785.             Combote.AddItem Trim(.Fields("item_content"))
  786.             .MoveNext
  787.         Loop
  788.     End With
  789.     
  790.     '定位列表框内容
  791.     With Combote
  792.         For jsqte = .ListCount - 1 To 0 Step -1
  793.             If Dwnr = Trim(.List(jsqte)) Then
  794.                 Exit For
  795.             End If
  796.         Next jsqte
  797.         If jsqte <> -1 Then
  798.             Combote.Text = .List(jsqte)
  799.         Else
  800.             If .ListCount <> 0 Then
  801.                 .Text = .List(0)
  802.             End If
  803.         End If
  804.     End With
  805. End Function
  806. Public Function Fun_GetIndex(ComboCodeTe As String, FindText As String) As String                         '查找列表框内容对应索引号
  807.     '函数参数:列表框分组编码,定位内容
  808.     Dim Lbknrrec As ADODB.Recordset
  809.   
  810.     Fun_GetIndex = ""
  811.   
  812.     '填充列表框内容
  813.     Set Lbknrrec = Cw_DataEnvi.dataconnect.Execute("select Item_Index from xt_combolist where combo_code='" & Trim(ComboCodeTe) & "' And Item_Content='" & Trim(FindText) & "'")
  814.   
  815.     With Lbknrrec
  816.         If Not .EOF Then
  817.             Fun_GetIndex = Trim(.Fields("Item_Index"))
  818.         End If
  819.     End With
  820. End Function
  821. Public Function Fun_GetContent(ComboCodeTe As String, FindIndex As String) As String                      '查找列表框索引号对应内容
  822.     '函数参数:列表框分组编码,定位内容
  823.     Dim Lbknrrec As ADODB.Recordset
  824.   
  825.     Fun_GetContent = ""
  826.   
  827.     '填充列表框内容
  828.     Set Lbknrrec = Cw_DataEnvi.dataconnect.Execute("select Item_Content from xt_combolist where combo_code='" & Trim(ComboCodeTe) & "' And Item_Index='" & Trim(FindIndex) & "'")
  829.   
  830.     With Lbknrrec
  831.         If Not .EOF Then
  832.             Fun_GetContent = Trim(.Fields("Item_Content"))
  833.         End If
  834.     End With
  835. End Function
  836. '==========================以上为列表框处理基本函数=========================='
  837. Public Function XtWaitMess(Str_IndexSub)                               '系统功能调用等待提示
  838.     
  839.     '函数参数:系统功能模块索引号
  840.     Xtcdcs = Str_IndexSub
  841.     XT_FrmWaitMess.Show 1
  842. End Function
  843. Public Function Sub_FillPeriod(Combote As ComboBox, Year As Integer, Period As Integer)            '列表框填充会计期间
  844.     '过程参数;填充列表框,会计年度,默认会计期间
  845.     Dim jsqte As Integer
  846.     With Combote
  847.         .Clear
  848.         For jsqte = 1 To 12
  849.             .AddItem Mid(Trim(Str(10000 + Xtyear)), 2, 4) + "." + Mid(Trim(Str(100 + jsqte)), 2, 2)
  850.         Next jsqte
  851.      
  852.         .Text = Mid(Trim(Str(10000 + Xtyear)), 2, 4) + "." + Mid(Trim(Str(100 + Period)), 2, 2)
  853.     End With
  854. End Function
  855. '//* 功能: 金额小写转换为大写  调用参数:jesj...人民币小写金额
  856. '//* 返回变量: name..人民币大写金额
  857. Public Function Fun_Jezh(Jesj As Double) As String
  858.     
  859.     Dim Name1$, Name2$, Mje1$, Name$
  860.     Dim len_mje1%, k%, Ws%, j%, ws1%, m%
  861.     Dim Bz As Boolean
  862.     Name1 = "壹贰叁肆伍陆柒捌玖"
  863.     Name2 = "分角元拾佰仟万拾佰仟亿拾佰仟"
  864.     Mje1 = Trim(Format(Jesj, "###.00"))
  865.     len_mje1 = Len(Mje1)
  866.     If len_mje1 > 16 Or Jesj < 0.01 Or IsNull(Jesj) Then
  867.         Fun_Jezh = ""
  868.         Exit Function
  869.     End If
  870.     '//取无小数的字符串
  871.     Mje1 = Left(Mje1, len_mje1 - 3) + Right(Mje1, 2)
  872.     len_mje1 = len_mje1 - 1
  873.     k = len_mje1 * 2 - 1
  874.     Ws = Int(Mid(Mje1, 1, 1)) * 2 - 1
  875.     If len_mje1 = 3 And Ws < 0 Then     '//如果金额<1 name=''
  876.         Name = ""
  877.     Else
  878.         If Ws > 0 Then
  879.             Name = MidB(Name1, Ws, 2) + MidB(Name2, k, 2) '//如果金额>=1,转换金额
  880.         End If
  881.     End If
  882.     j = 2
  883.     k = k - 2
  884.     Bz = True
  885. xh1:
  886.     Do While j <= len_mje1 And Bz
  887.         ws1 = Int(Mid(Mje1, j, 1)) * 2 - 1
  888.         If ws1 > 0 Then
  889.             Name = Name + MidB(Name1, ws1, 2) + MidB(Name2, k, 2)
  890.             j = j + 1
  891.             k = k - 2
  892.             GoTo xh1
  893.         End If
  894.         m = 0
  895. xh2:
  896.         Do While ws1 < 0
  897.             If len_mje1 >= 11 Then
  898.                 If k < 21 Then
  899.                     m = m + 1
  900.                 End If
  901.             End If
  902.             If k = 5 Or (k = 13 And m <= 3) Or k = 21 Then
  903.                 Name = Name + MidB(Name2, k, 2)
  904.             End If
  905.             If k = 1 Then
  906.                 Name = Name + "整"
  907.                 Bz = False
  908.                 Exit Do
  909.             End If
  910.             j = j + 1
  911.             k = k - 2
  912.             ws1 = Int(Mid(Mje1, j, 1)) * 2 - 1
  913.             If ws1 < 0 Then
  914.                 GoTo xh2
  915.             Else
  916.                 If len_mje1 = 3 Then
  917.                     Name = Name + "零"
  918.                 Else
  919.                     Name = Name + "零"
  920.                 End If
  921.             End If
  922.         Loop
  923.     Loop
  924.     '去掉元和角之间零(1230.32)
  925.     wz1 = InStr(1, Name, "元")
  926.     wz2 = InStr(1, Name, "角")
  927.     If wz1 <> 0 And wz2 <> 0 Then
  928.         wz3 = InStr(wz1, Name, "零")
  929.         If wz3 <> 0 Then
  930.             Name = Mid(Name, 1, wz3 - 1) + Mid(Name, wz3 + 1, Len(Name))
  931.         End If
  932.     End If
  933.     Fun_Jezh = Name
  934. End Function
  935. Public Function FillImageCombo(Combote As ImageCombo, ComboCode As String, AddType As Integer) '填充列表框(ImageCombo)并定位
  936.     '函数参数:列表框(ImageCombo),ComboCode列表框分组编码
  937.     'AddType 项目填充类型(0-填充索引+内容,无空记录 1-仅填充内容,无空记录 2-填充索引+内容,有空记录 3-仅填充内容,有空记录)
  938.     Dim Rec_Combo As ADODB.Recordset              '填充属性
  939.     Dim Rec_FillText As ADODB.Recordset           '填充内容
  940.     Dim ci As ComboItem
  941.     Dim jsqte As Integer                          '临时计数器
  942.   
  943.     Combote.ComboItems.Clear
  944.     jsqte = 1
  945.   
  946.     '填充列表框内容
  947.     Set Rec_Combo = Cw_DataEnvi.dataconnect.Execute("Select * From Xt_ImageCombo Where combo_code='" + Trim(ComboCode) + "'")
  948.     With Rec_Combo
  949.         Combote.Locked = True
  950.         If AddType = 2 Or AddType = 3 Then
  951.             Set ci = Combote.ComboItems.Add(, "@")
  952.             jsqte = jsqte + 1
  953.         End If
  954.         
  955.         Set Rec_FillText = Cw_DataEnvi.dataconnect.Execute(Trim(.Fields("Sql_String")))
  956.         
  957.         Do While Not Rec_FillText.EOF
  958.             Select Case AddType
  959.                 Case 0, 2                              '填充索引+内容
  960.                     Set ci = Combote.ComboItems.Add(, "@" + Trim(Rec_FillText.Fields(Trim(.Fields("ItemKey")))), Trim(Rec_FillText.Fields(Trim(.Fields("ItemKey")))) + " " + Trim(Rec_FillText.Fields(Trim(.Fields("ItemText")))))
  961.                 Case 1, 3                              '仅填充记录内容
  962.                     Set ci = Combote.ComboItems.Add(, "@" + Trim(Rec_FillText.Fields(Trim(.Fields("ItemKey")))), Trim(Rec_FillText.Fields(Trim(.Fields("ItemText")))))
  963.             End Select
  964.             jsqte = jsqte + 1
  965.             Rec_FillText.MoveNext
  966.         Loop
  967.         If Combote.ComboItems.Count <> 0 Then
  968.             Combote.ComboItems.Item(1).Selected = True
  969.         End If
  970.     End With
  971. End Function
  972. Public Function GetComboKey(Combote As ImageCombo, KeyOrName As Integer) As String      '取得用户选中列表框项目Key值或内容
  973.   
  974.     '函数参数:列表框(ImageCombo),KeyOrName 0--取项目Key值 1--取选项内容值
  975.     Dim jsqte As Integer        '临时计数器
  976.   
  977.     If KeyOrName = 0 Then
  978.         '去掉首位@
  979.         For jsqte = 1 To Combote.ComboItems.Count
  980.             If Combote.ComboItems(jsqte).Text = Combote.Text Then
  981.                 Exit For
  982.             End If
  983.         Next jsqte
  984.         
  985.         If Combote.ComboItems.Count > 0 Then
  986.             GetComboKey = Trim(Mid(Combote.ComboItems(jsqte).Key, 2, Len(Combote.ComboItems(jsqte).Key)))
  987.         End If
  988.     Else
  989.         GetComboKey = Trim(Combote.Text)
  990.     End If
  991.  
  992. End Function
  993. Public Sub Sub_CodeScheme(ItemCodeTe As String, Int_CodeLev As Integer, Int_CodeScheme() As Integer)     '生成相应各级编码长度到数组中(编码方案)
  994.     '函数参数:ItemCodeTe 编码方案代码,Int_CodeLev 返回编码最大级数,Int_CodeScheme() 返回各级编码长度
  995.     'ForExample:会计科目编码:322222  结果:Int_CodeLev=6 Int_CodeScheme()=3 5 7 9 11 13
  996.     
  997.     Dim Rec_CodeScheme As New ADODB.Recordset   '编码方案动态集
  998.     Set Rec_CodeScheme = Cw_DataEnvi.dataconnect.Execute("Select CodeScheme From Gy_CodeScheme Where ItemCode='" & Trim(ItemCodeTe) & "'")
  999.     With Rec_CodeScheme
  1000.         If Not .EOF Then
  1001.             Int_CodeLev = Len(Trim(.Fields("CodeScheme")))
  1002.             ReDim Int_CodeScheme(Int_CodeLev)
  1003.             lenjsq = 0
  1004.             For jsqte = 1 To Int_CodeLev
  1005.                 lenjsq = lenjsq + Mid(Trim(.Fields("CodeScheme")), jsqte, 1)
  1006.                 Int_CodeScheme(jsqte) = lenjsq
  1007.             Next jsqte
  1008.         End If
  1009.         .Close
  1010.     End With
  1011. End Sub
  1012. Public Sub Sub_SetOperStatus(Str_OperStatus As String)                                                   '显示系统操作状态
  1013.     
  1014.     If Trim(Str_OperStatus) <> "" Then
  1015.         XT_Main.StatusBar1.Panels("OperStatus") = Str_OperStatus
  1016.     Else
  1017.         XT_Main.StatusBar1.Panels("OperStatus") = "就绪"
  1018.     End If
  1019. End Sub
  1020. Public Sub Sub_ReadBillInfo(BillCode As String, Frm_Bill As Form, Var_Bill() As Variant)                 '读入单据整体设计信息(录入)
  1021.     
  1022.     '参数说明:BillCode 单据编码(索引号) ,Frm_Bill 单据窗体 , VarBill 用来返回单据设计信息
  1023.     Dim RecTemp As New ADODB.Recordset                             '临时使用动态集
  1024.     ReDim Var_Bill(1 To 5)                                         '返回单据设计信息
  1025.     Set RecTemp = Cw_DataEnvi.dataconnect.Execute("Select * From xt_BillDesign Where BillCode='" & Trim(BillCode) & "'")
  1026.     With RecTemp
  1027.         If Not .EOF Then
  1028.             Frm_Bill.Height = .Fields("FormHeight")                   '设置窗体高度
  1029.             Frm_Bill.Width = .Fields("FormWidth")                     '设置窗体宽度
  1030.             Var_Bill(1) = Trim(.Fields("BillName"))                   '单据描述
  1031.             Frm_Bill.Caption = Var_Bill(1)                            '单据描述赋予窗体Caption
  1032.             Var_Bill(2) = Trim(.Fields("BillTitle"))                  '单据标题
  1033.             Var_Bill(3) = Trim(.Fields("Text_Group_Code"))            '单据所使用文本框组索引号
  1034.             Var_Bill(4) = Trim(.Fields("Grid_Code"))                  '单据所使用网格组索引号
  1035.             Var_Bill(5) = Trim(.Fields("Print_Code"))                 '单据所使用打印参数索引号
  1036.         End If
  1037.     End With
  1038. End Sub
  1039. Public Sub Sub_DPReadBillInfo(BillCode As String, Frm_Bill As Form, Var_Bill() As Variant)               '读入单据整体设计信息(打印)
  1040.     
  1041.     '参数说明:BillCode  单据编码(索引号)  Frm_Bill 单据窗体  VarBill 用来返回单据设计信息
  1042.     Dim RecTemp As New ADODB.Recordset
  1043.     ReDim Var_Bill(1 To 3)
  1044.   
  1045.     Set RecTemp = Cw_DataEnvi.dataconnect.Execute("Select * From xt_BillDesign Where BillCode='" & Trim(BillCode) & "'")
  1046.   
  1047.     With RecTemp
  1048.         If Not .EOF Then
  1049.             Frm_Bill.Pict.Height = .Fields("FormHeight") - 375                  '设置窗体高度
  1050.             Frm_Bill.Pict.Width = .Fields("FormWidth")                          '设置窗体宽度
  1051.             Frm_Bill.Lab_Title = Trim(.Fields("BillName"))                      '单据标题
  1052.             Var_Bill(1) = Trim(.Fields("BillName"))                             '单据描述
  1053.             Frm_Bill.Caption = Var_Bill(1)                                      '单据描述赋予窗体Caption
  1054.             Var_Bill(2) = Trim(.Fields("Text_Group_Code"))                      '单据所使用文本框组索引号
  1055.             Var_Bill(3) = Trim(.Fields("Grid_Code"))                            '单据所使用网格组索引号
  1056.         End If
  1057.     End With
  1058. End Sub
  1059. Public Sub DPBcwggs(Bcgsgrid As vsFlexGrid, Wggsdm As String)             '保存网格格式(包括网格列宽,网格列顺序)
  1060.     
  1061.     '过程参数:保存格式网格对象,网格格式代码(网格参数)
  1062.     Dim Tsxx As String
  1063.     Dim RecTemp As New ADODB.Recordset
  1064.     Dim Qslzte As Integer
  1065.     Cw_DataEnvi.dataconnect.BeginTrans
  1066.     On Error GoTo Swcwcl
  1067.     If RecTemp.State = 1 Then RecTemp.Close
  1068.     RecTemp.Open "select * from xt_grid where Grid_Code='" + Trim(Wggsdm) + "' order by ColId", Cw_DataEnvi.dataconnect, adOpenDynamic, adLockOptimistic
  1069.     With RecTemp
  1070.         If Not .EOF Then
  1071.             Qslzte = .Fields("BeginCol")
  1072.             .MoveNext
  1073.         End If
  1074.         Do While Not .EOF
  1075.             For jsqte = Qslzte To Bcgsgrid.Cols - 1
  1076.                 If Bcgsgrid.FixedRows = 1 Then
  1077.                     If Trim(.Fields("ColTitle1")) = Trim(Bcgsgrid.TextMatrix(0, jsqte)) Then
  1078.                         Exit For
  1079.                     End If
  1080.                 Else
  1081.                     If Trim(.Fields("ColTitle1")) = Trim(Bcgsgrid.TextMatrix(0, jsqte)) And Trim(.Fields("ColTitle2")) = Trim(Bcgsgrid.TextMatrix(1, jsqte)) Then
  1082.                         Exit For
  1083.                     End If
  1084.                 End If
  1085.             Next jsqte
  1086.             If jsqte <= Bcgsgrid.Cols - 1 Then
  1087.                 .Fields("ColId") = jsqte - Qslzte + 1
  1088.                 .Fields("ColWidth") = Bcgsgrid.ColWidth(jsqte)
  1089.                 .Update
  1090.             Else
  1091.                 GoTo Swcwcl
  1092.             End If
  1093.             .MoveNext
  1094.         Loop
  1095.     End With
  1096.     Cw_DataEnvi.dataconnect.CommitTrans
  1097.     Tsxx = "表格格式保存完毕!"
  1098.     Call Xtxxts(Tsxx, 0, 4)
  1099.     Exit Sub
  1100. Swcwcl:
  1101.     Cw_DataEnvi.dataconnect.RollbackTrans
  1102.     Tsxx = "存盘过程中出现未知错误,程序自动恢复保存前状态!"
  1103.     Call Xtxxts(Tsxx, 0, 1)
  1104.     Exit Sub
  1105. End Sub
  1106. '===================以下为系统权限控制与上机日志控制函数======================'
  1107. Public Function Security_Log(gnsy As String, UserCode As String, Optional LogTF As Integer = 3, Optional State As Boolean = True, Optional Msg As Boolean = True) As Boolean   '权限判断和日志
  1108.     'Gnsy 功能索引 UserCode 用户编码
  1109.     'LogTF (1、判断权限,写日志)、(2、只写日志)、(3、只判断权限)
  1110.     'State 状态 (True 进入 false 完成)
  1111.     '返回Security_Log=true表示有权限,Security_Log=false表示没有有权限
  1112.     'Msg   没有权限时是否提示(True 提示    False不提示)
  1113.     Dim Tsxx As String              '系统信息提示
  1114.     
  1115.    On Error Resume Next
  1116.     
  1117.     Dim aDo_userGroup As New Recordset
  1118.     Dim aDo_gnbm As New Recordset: Dim Ssql As String
  1119.     
  1120.     Set aDo_gnbm = Cw_DataEnvi.dataconnect.Execute("select * from Xt_xtgnb where gnsy='" & Trim(gnsy) & "'")
  1121.      
  1122.     If LogTF = 1 Or LogTF = 3 Then
  1123.         Set aDo_userGroup = Cw_DataEnvi.dataconnect.Execute("select * from Gy_Czygl where czybm='" & Trim(UserCode) & "'")
  1124.             
  1125.         If Mid(aDo_userGroup!AuthorityID, aDo_gnbm!Id, 1) = "1" Then
  1126.             Security_Log = True
  1127.         Else
  1128.             Security_Log = False
  1129.         End If
  1130.         aDo_userGroup.Close
  1131.         Set aDo_userGroup = Nothing
  1132.         
  1133.         If Security_Log = False Then
  1134.             Set aDo_userGroup = Cw_DataEnvi.dataconnect.Execute("select * from System_UserGroupInfo a ,System_UserGroup b where a.groupid=b.groupid and a.userid='" & Trim(UserCode) & "'")
  1135.             Do While Not aDo_userGroup.EOF
  1136.                 If Mid(aDo_userGroup!AuthorityID, aDo_gnbm!Id, 1) = "1" Then
  1137.                     Security_Log = True
  1138.                     Exit Do
  1139.                 Else
  1140.                     Security_Log = False
  1141.                 End If
  1142.                 aDo_userGroup.MoveNext
  1143.             Loop
  1144.             aDo_userGroup.Close
  1145.             Set aDo_userGroup = Nothing
  1146.         End If
  1147.         If Security_Log = False Then
  1148.            If Msg = True Then
  1149.                 Tsxx = "没有权限,请与管理员联系!   "
  1150.                 Call Xtxxts(Tsxx, 0, 4)
  1151.            End If
  1152.         End If
  1153.     End If
  1154.     '------------------------------------
  1155.     If (LogTF = 1 And Security_Log = True) Or LogTF = 2 Then
  1156.         If State = True Then
  1157.             Ssql = "insert into System_Log(GeginDate,userid,WorkstationName,WorkList,SystemName,NetUserName,State)" _
  1158.                 & " values(getdate(),'" & UserCode & "','" & MachineName & "','" & Trim("" & aDo_gnbm!gnms) & "','" & "财务总帐" & "','" & NTDomainUserName & "','进入')"
  1159.         Else
  1160.             Ssql = "insert into System_Log(GeginDate,userid,WorkstationName,WorkList,SystemName,NetUserName,State)" _
  1161.                 & " values(getdate(),'" & UserCode & "','" & MachineName & "','" & Trim("" & aDo_gnbm!gnms) & "','" & "财务总帐" & "','" & NTDomainUserName & "','完成')"
  1162.         End If
  1163.         Cw_DataEnvi.dataconnect.Execute Ssql
  1164.     End If
  1165.     aDo_gnbm.Close
  1166.     Set aDo_gnbm = Nothing
  1167.     
  1168. End Function
  1169. Public Function MachineName() As String                                         '取得当前工作站名
  1170.     
  1171.     Dim sBuffer As String * 255
  1172.     If GetComputerName(sBuffer, 255&) <> 0 Then
  1173.         MachineName = Left$(sBuffer, InStr(sBuffer, vbNullChar) - 1)
  1174.     Else
  1175.         MachineName = "(未知)"
  1176.     End If
  1177. End Function
  1178. Public Function NTDomainUserName() As String                                    '取得当前网络用户名
  1179.     
  1180.     Dim strBuffer As String * 255
  1181.     Dim lngBufferLength As Long
  1182.     Dim lngRet As Long
  1183.     Dim strTemp As String
  1184.     lngBufferLength = 255
  1185.     lngRet = GetUserName(strBuffer, lngBufferLength)
  1186.     strTemp = UCase(Trim$(strBuffer))
  1187.     NTDomainUserName = Left$(strTemp, lngBufferLength - 1)
  1188. End Function
  1189. Public Function GetPY(a1 As String) As String                                   '返回拼音码字符串
  1190.     
  1191.     '输入参数:a1 输入字符串
  1192.     Dim jsqte As Long
  1193.     Dim t1 As String
  1194.     GetPY = ""
  1195.     If Len(Trim(a1)) = 0 Then
  1196.         Exit Function
  1197.     End If
  1198.     For jsqte = 1 To Len(Trim(a1))
  1199.         t1 = Mid(a1, jsqte, 1)
  1200.         If Asc(t1) < 0 Then
  1201.             If Asc(t1) < Asc("啊") Then
  1202.                 GetPY = GetPY + t1
  1203.                 GoTo L1
  1204.             End If
  1205.             If Asc(t1) >= Asc("啊") And Asc(t1) < Asc("芭") Then
  1206.                 GetPY = GetPY + "A"
  1207.                 GoTo L1
  1208.             End If
  1209.             If Asc(t1) >= Asc("芭") And Asc(t1) < Asc("擦") Then
  1210.                 GetPY = GetPY + "B"
  1211.                 GoTo L1
  1212.             End If
  1213.             If Asc(t1) >= Asc("擦") And Asc(t1) < Asc("搭") Then
  1214.                 GetPY = GetPY + "C"
  1215.                 GoTo L1
  1216.             End If
  1217.             If Asc(t1) >= Asc("搭") And Asc(t1) < Asc("蛾") Then
  1218.                 GetPY = GetPY + "D"
  1219.                 GoTo L1
  1220.             End If
  1221.             If Asc(t1) >= Asc("蛾") And Asc(t1) < Asc("发") Then
  1222.                 GetPY = GetPY + "E"
  1223.                 GoTo L1
  1224.             End If
  1225.             If Asc(t1) >= Asc("发") And Asc(t1) < Asc("噶") Then
  1226.                 GetPY = GetPY + "F"
  1227.                 GoTo L1
  1228.             End If
  1229.             If Asc(t1) >= Asc("噶") And Asc(t1) < Asc("哈") Then
  1230.                 GetPY = GetPY + "G"
  1231.                 GoTo L1
  1232.             End If
  1233.             If Asc(t1) >= Asc("哈") And Asc(t1) < Asc("击") Then
  1234.                 GetPY = GetPY + "H"
  1235.                 GoTo L1
  1236.             End If
  1237.             If Asc(t1) >= Asc("击") And Asc(t1) < Asc("喀") Then
  1238.                 GetPY = GetPY + "J"
  1239.                 GoTo L1
  1240.             End If
  1241.             If Asc(t1) >= Asc("喀") And Asc(t1) < Asc("垃") Then
  1242.                 GetPY = GetPY + "K"
  1243.                 GoTo L1
  1244.             End If
  1245.             If Asc(t1) >= Asc("垃") And Asc(t1) < Asc("妈") Then
  1246.                 GetPY = GetPY + "L"
  1247.                 GoTo L1
  1248.             End If
  1249.             If Asc(t1) >= Asc("妈") And Asc(t1) < Asc("拿") Then
  1250.                 GetPY = GetPY + "M"
  1251.                 GoTo L1
  1252.             End If
  1253.             If Asc(t1) >= Asc("拿") And Asc(t1) < Asc("哦") Then
  1254.                 GetPY = GetPY + "N"
  1255.                 GoTo L1
  1256.             End If
  1257.             If Asc(t1) >= Asc("哦") And Asc(t1) < Asc("啪") Then
  1258.                 GetPY = GetPY + "O"
  1259.                 GoTo L1
  1260.             End If
  1261.             If Asc(t1) >= Asc("啪") And Asc(t1) < Asc("期") Then
  1262.                 GetPY = GetPY + "P"
  1263.                 GoTo L1
  1264.             End If
  1265.             If Asc(t1) >= Asc("期") And Asc(t1) < Asc("然") Then
  1266.                 GetPY = GetPY + "Q"
  1267.                 GoTo L1
  1268.             End If
  1269.             If Asc(t1) >= Asc("然") And Asc(t1) < Asc("撒") Then
  1270.                 GetPY = GetPY + "R"
  1271.                 GoTo L1
  1272.             End If
  1273.             If Asc(t1) >= Asc("撒") And Asc(t1) < Asc("塌") Then
  1274.                 GetPY = GetPY + "S"
  1275.                 GoTo L1
  1276.             End If
  1277.             If Asc(t1) >= Asc("塌") And Asc(t1) < Asc("挖") Then
  1278.                 GetPY = GetPY + "T"
  1279.                 GoTo L1
  1280.             End If
  1281.             If Asc(t1) >= Asc("挖") And Asc(t1) < Asc("昔") Then
  1282.                 GetPY = GetPY + "W"
  1283.                 GoTo L1
  1284.             End If
  1285.             If Asc(t1) >= Asc("昔") And Asc(t1) < Asc("压") Then
  1286.                 GetPY = GetPY + "X"
  1287.                 GoTo L1
  1288.             End If
  1289.             If Asc(t1) >= Asc("压") And Asc(t1) < Asc("匝") Then
  1290.                 GetPY = GetPY + "Y"
  1291.                 GoTo L1
  1292.             End If
  1293.             If Asc(t1) >= Asc("匝") Then
  1294.                 GetPY = GetPY + "Z"
  1295.                 GoTo L1
  1296.             End If
  1297.         Else
  1298.             If UCase(t1) <= "Z" And UCase(t1) >= "A" Then
  1299.                 GetPY = GetPY + UCase(t1)
  1300.             Else
  1301.                 GetPY = t1
  1302.             End If
  1303.         End If
  1304. L1:
  1305.     Next jsqte
  1306. End Function
  1307. '<<<<<<<<<<<<<<<<<<<<<
  1308. Public Function Item_Info()  '项目查询连接
  1309.     
  1310.     Dim aDo_Item As New Recordset
  1311.     Dim Ssql As String
  1312.     Set aDo_Item = Cw_DataEnvi.dataconnect.Execute("select * from DEV_item")
  1313.     
  1314.     With aDo_Item
  1315.         Do While Not .EOF
  1316.             If !yncode = 1 And Trim(aDo_Item!TableName) = "CorrelationList" Then
  1317.                 If !YNRoot = 1 Then
  1318.                     Ssql = Ssql & ",N_" & !ItemFieldName & "=(select ListName from DEV_CorrelationList c where convert(varchar(18),c.ListCode)=b." & !ItemFieldName & ")"
  1319.                 Else
  1320.                     Ssql = Ssql & ",N_" & !ItemFieldName & "=(select ListName from DEV_CorrelationList c where convert(varchar(18),c.ListCode)=a." & !ItemFieldName & ")"
  1321.                 End If
  1322.                 '-----------------
  1323.             Else
  1324.                 If !yncode = 1 Then
  1325.                     If !YNRoot = 1 Then
  1326.                         Ssql = Ssql & ",N_" & !ItemFieldName & "=(select " & aDo_Item!CloumnName2 & " from " & aDo_Item!TableName & " c where c." & aDo_Item!CloumnName1 & "=b." & !ItemFieldName & ")"
  1327.                     Else
  1328.                         Ssql = Ssql & ",N_" & !ItemFieldName & "=(select " & aDo_Item!CloumnName2 & " from " & aDo_Item!TableName & " c where c." & aDo_Item!CloumnName1 & "=a." & !ItemFieldName & ")"
  1329.                     End If
  1330.                 End If
  1331.             End If
  1332.             .MoveNext
  1333.         Loop
  1334.         Ssql = "select b.dcode,b.tcode,b.lcode,b.dname,b.manage,b.dxh,b.mader,b.zflag,b.mlevel,b.pdate,b.state,b.dno,b.conno,a.*,N_Lcode=(select isname from DEV_ItemSort c where convert(varchar(18),c.isid)=b.lcode)" & Ssql & " FROM DEV_RootInfo a,DEV_main b"
  1335.     End With
  1336.     Item_Info = Ssql
  1337. End Function
  1338. '====================单据编号格式化==============
  1339. Public Function BillCodeFormat(BillCode As String, Code As String) As String
  1340.     BillCode = Trim(BillCode): Code = Trim(Code)
  1341.     Dim Profix  As String       '前缀
  1342.     Dim Glida As Integer        '流水方式
  1343.     Dim CodeLen As Integer      '代码长度
  1344.     Dim aDo_re As New Recordset
  1345.     Set aDo_re = Cw_DataEnvi.dataconnect.Execute("select * from Gy_BillNumber where BillCode='" & Trim(BillCode) & "'")
  1346.     If aDo_re.RecordCount > 0 Then
  1347.         Profix = aDo_re!Profix
  1348.         Glida = aDo_re!Glida
  1349.         CodeLen = aDo_re!CodeLen
  1350.     Else
  1351.         BillCodeFormat = "": Exit Function
  1352.     End If
  1353.     aDo_re.Close
  1354.     If Len(Code) >= Len(Profix) + CodeLen Then BillCodeFormat = Code: Exit Function
  1355.     If Glida = 0 Then
  1356.        If Len(Code) >= Len(Profix) Then
  1357.           If Profix <> Mid(Code, 1, Len(Profix)) Then
  1358.              BillCodeFormat = Profix & String(CodeLen - Len(Code), "0") & Code
  1359.           Else
  1360.              If Len(Code) = Len(Profix) Then BillCodeFormat = Code: Exit Function
  1361.              BillCodeFormat = Profix & String(CodeLen - Len(Code), "0") & Mid(Code, Len(Profix) + 1, Len(Code))
  1362.           End If
  1363.        Else
  1364.           BillCodeFormat = Profix & String(CodeLen - Len(Code), "0") & Code: Exit Function
  1365.        End If
  1366.     Else
  1367.        If Len(Code) >= Len(Profix) Then
  1368.           If Profix <> Mid(Code, 1, Len(Profix)) Then
  1369.                BillCodeFormat = Profix & Code
  1370.              Else
  1371.                BillCodeFormat = Code
  1372.           End If
  1373.        End If
  1374.     End If
  1375. End Function
  1376. '====================单据ID处理==================
  1377. Public Function CreatBillID(BillCode As String) As Integer
  1378.     '参数说明: BillCode 单据编码
  1379.     Dim BillType As String
  1380.     Dim aDo_re As New Recordset
  1381.     Set aDo_re = Cw_DataEnvi.dataconnect.Execute("select * from Gy_BillNumber where BillCode='" & Trim(BillCode) & "'")
  1382.     If aDo_re.RecordCount > 0 Then
  1383.         CreatBillID = aDo_re!IDNow
  1384.         BillType = aDo_re!BillType
  1385.     End If
  1386.     aDo_re.Close
  1387.     Cw_DataEnvi.dataconnect.Execute "update  Gy_BillNumber set IDNow=IDNow+1 where BillType='" & Trim(BillType) & "'"
  1388. End Function
  1389. '====================单据编码处理==================
  1390. Public Function CreatBillCode(BillCode As String, Optional Add As Boolean = False, Optional KjYear As Integer, Optional Period As Integer, Optional WhCode As String) As String
  1391.     '参数说明: BillCode 单据编码,KjYear 会计年度,Period 会计期间,WhCode 仓库编码,Add 编号是累加(True 加,False,否)
  1392.     Dim BillCodeMode As Integer '编码方式
  1393.     Dim Profix  As String       '前缀
  1394.     Dim Glida As Integer        '流水方式
  1395.     Dim CodeLen As Integer      '代码长度
  1396.     Dim aDo_re As New Recordset
  1397.     Set aDo_re = Cw_DataEnvi.dataconnect.Execute("select * from Gy_BillNumber where BillCode='" & Trim(BillCode) & "'")
  1398.     With aDo_re
  1399.         If .RecordCount > 0 Then
  1400.             BillCodeMode = !BillCodeMode
  1401.             Profix = !Profix
  1402.             Glida = !Glida
  1403.             CodeLen = !CodeLen
  1404.             .Close
  1405.         Else
  1406.             Exit Function
  1407.         End If
  1408.     End With
  1409.     
  1410.     Select Case BillCodeMode
  1411.            Case 0 '单据方式
  1412.               '=============
  1413.               Select Case Glida
  1414.                      Case 0
  1415.                           Set aDo_re = Cw_DataEnvi.dataconnect.Execute("select * from Gy_Maxnum where BillCode='" & Trim(BillCode) & "'")
  1416.                           If aDo_re.RecordCount < 1 Then '当编号记录没有时
  1417.                               Cw_DataEnvi.dataconnect.Execute "insert into Gy_Maxnum(BillCode,NowNumber) VALUES ('" & Trim(BillCode) & "',1)"
  1418.                               CreatBillCode = Trim(Profix) & String(CodeLen - 1, "0") & 1
  1419.                           Else
  1420.                               CreatBillCode = Trim(Profix) & String(CodeLen - Len(aDo_re!NowNumBer), "0") & aDo_re!NowNumBer
  1421.                           End If
  1422.                           If Add = True Then
  1423.                               Cw_DataEnvi.dataconnect.Execute "update Gy_Maxnum set NowNumBer=NowNumBer+1  where BillCode='" & Trim(BillCode) & "'"
  1424.                           End If
  1425.                           Exit Function
  1426.                      Case 1
  1427.                           Set aDo_re = Cw_DataEnvi.dataconnect.Execute("select * from Gy_Maxnum where BillCode='" & Trim(BillCode) & "' and KjYear= " & KjYear)
  1428.                           If aDo_re.RecordCount < 1 Then '当前年记录没有时
  1429.                               Cw_DataEnvi.dataconnect.Execute "insert into Gy_Maxnum(BillCode,Kjyear,NowNumber) VALUES ('" & Trim(BillCode) & "'," & KjYear & ",1)"
  1430.                               CreatBillCode = Trim(Profix) & KjYear & String(CodeLen - 1 - Len(Trim(Str(KjYear))), "0") & "1"
  1431.                           Else
  1432.                               CreatBillCode = Trim(Profix) & KjYear & String(CodeLen - Len(aDo_re!NowNumBer) - Len(Trim(Str(KjYear))), "0") & aDo_re!NowNumBer
  1433.                           End If
  1434.                           If Add = True Then
  1435.                               Cw_DataEnvi.dataconnect.Execute "update Gy_Maxnum set NowNumBer=NowNumBer+1 where BillCode='" & Trim(BillCode) & "' and KjYear= " & KjYear
  1436.                           End If
  1437.                           Exit Function
  1438.                      Case 2
  1439.                           Set aDo_re = Cw_DataEnvi.dataconnect.Execute("select * from Gy_Maxnum where BillCode='" & Trim(BillCode) & "' and KjYear= " & KjYear & " and Period=" & Period)
  1440.                           If aDo_re.RecordCount < 1 Then '当前年当前期间记录没有时
  1441.                               Cw_DataEnvi.dataconnect.Execute "insert into Gy_Maxnum(BillCode,Kjyear,Period,NowNumber) VALUES ('" & Trim(BillCode) & "'," & KjYear & "," & Period & ",1)"
  1442.                               CreatBillCode = Trim(Profix) & KjYear & String(2 - Len(Trim(Str(Period))), "0") & Period & String(CodeLen - 1 - Len(Trim(Str(KjYear))) - 2, "0") & "1"
  1443.                           Else
  1444.                               CreatBillCode = Trim(Profix) & KjYear & String(2 - Len(Trim(Str(Period))), "0") & Period & String(CodeLen - Len(aDo_re!NowNumBer) - Len(Trim(Str(KjYear))) - 2, "0") & aDo_re!NowNumBer
  1445.                           End If
  1446.                           If Add = True Then
  1447.                               Cw_DataEnvi.dataconnect.Execute "update Gy_Maxnum set NowNumBer=NowNumBer+1 where BillCode='" & Trim(BillCode) & "' and KjYear= " & KjYear & " and Period=" & Period
  1448.                           End If
  1449.                           Exit Function
  1450.               End Select
  1451.               '==============
  1452.           Case 1 '单据+仓库方式
  1453.           
  1454.               '=============
  1455.               Select Case Glida
  1456.                      Case 0
  1457.                           Set aDo_re = Cw_DataEnvi.dataconnect.Execute("select * from Gy_Maxnum where BillCode='" & Trim(BillCode) & "' and WhCode='" & Trim(WhCode) & "'")
  1458.                           If aDo_re.RecordCount < 1 Then '当编号记录没有时
  1459.                               Cw_DataEnvi.dataconnect.Execute "insert into Gy_Maxnum(BillCode,WhCode ,NowNumber) VALUES ('" & Trim(BillCode) & "','" & Trim(WhCode) & "',1)"
  1460.                               CreatBillCode = Trim(Profix) & Trim(WhCode) & String(CodeLen - 1 - Len(Trim(WhCode)), "0") & 1
  1461.                           Else
  1462.                               CreatBillCode = Trim(Profix) & Trim(WhCode) & String(CodeLen - Len(aDo_re!NowNumBer) - Len(Trim(WhCode)), "0") & aDo_re!NowNumBer
  1463.                           End If
  1464.                           If Add = True Then
  1465.                               Cw_DataEnvi.dataconnect.Execute "update Gy_Maxnum set NowNumBer=NowNumBer+1 where BillCode='" & Trim(BillCode) & "' and WhCode='" & Trim(WhCode) & "'"
  1466.                           End If
  1467.                           Exit Function
  1468.                      Case 1
  1469.                           Set aDo_re = Cw_DataEnvi.dataconnect.Execute("select * from Gy_Maxnum where BillCode='" & Trim(BillCode) & "' and KjYear= " & KjYear & " and WhCode='" & Trim(WhCode) & "'")
  1470.                           If aDo_re.RecordCount < 1 Then '当前年记录没有时
  1471.                               Cw_DataEnvi.dataconnect.Execute "insert into Gy_Maxnum(BillCode,Kjyear,WhCode,NowNumber) VALUES ('" & Trim(BillCode) & "'," & KjYear & ",'" & Trim(WhCode) & "',1)"
  1472.                               CreatBillCode = Trim(Profix) & Trim(WhCode) & KjYear & String(CodeLen - 1 - Len(Trim(Str(KjYear))) - Len(Trim(WhCode)), "0") & "1"
  1473.                           Else
  1474.                               CreatBillCode = Trim(Profix) & Trim(WhCode) & KjYear & String(CodeLen - Len(aDo_re!NowNumBer) - Len(Trim(Str(KjYear))) - Len(Trim(WhCode)), "0") & aDo_re!NowNumBer
  1475.                           End If
  1476.                           If Add = True Then
  1477.                               Cw_DataEnvi.dataconnect.Execute "update Gy_Maxnum set NowNumBer=NowNumBer+1 where BillCode='" & Trim(BillCode) & "' and KjYear= " & KjYear & " and WhCode='" & Trim(WhCode) & "'"
  1478.                           End If
  1479.                           Exit Function
  1480.                      Case 2
  1481.                           Set aDo_re = Cw_DataEnvi.dataconnect.Execute("select * from Gy_Maxnum where BillCode='" & Trim(BillCode) & "' and KjYear= " & KjYear & " and Period=" & Period & " and WhCode='" & Trim(WhCode) & "'")
  1482.                           If aDo_re.RecordCount < 1 Then '当前年当前期间记录没有时
  1483.                               Cw_DataEnvi.dataconnect.Execute "insert into Gy_Maxnum(BillCode,Kjyear,Period,WhCode,NowNumber) VALUES ('" & Trim(BillCode) & "'," & KjYear & "," & Period & ",'" & Trim(WhCode) & "',1)"
  1484.                               CreatBillCode = Trim(Profix) & Trim(WhCode) & KjYear & String(2 - Len(Trim(Str(Period))), "0") & Period & String(CodeLen - 1 - Len(Trim(Str(KjYear))) - 2 - Len(Trim(WhCode)), "0") & "1"
  1485.                           Else
  1486.                               CreatBillCode = Trim(Profix) & Trim(WhCode) & KjYear & String(2 - Len(Trim(Str(Period))), "0") & Period & String(CodeLen - Len(aDo_re!NowNumBer) - Len(Trim(Str(KjYear))) - 2 - Len(Trim(WhCode)), "0") & aDo_re!NowNumBer
  1487.                           End If
  1488.                           If Add = True Then
  1489.                               Cw_DataEnvi.dataconnect.Execute "update Gy_Maxnum set NowNumBer=NowNumBer+1 where BillCode='" & Trim(BillCode) & "' and KjYear= " & KjYear & " and Period=" & Period & " and WhCode='" & Trim(WhCode) & "'"
  1490.                           End If
  1491.                           Exit Function
  1492.               End Select
  1493.               '==============
  1494.           
  1495.     End Select
  1496. End Function