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