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

企业管理

开发平台:

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