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