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

企业管理

开发平台:

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