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

企业管理

开发平台:

Visual Basic

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