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

企业管理

开发平台:

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