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

企业管理

开发平台:

Visual Basic

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