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