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

企业管理

开发平台:

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