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

企业管理

开发平台:

Visual Basic

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