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

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frm_rowcol 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "输入Excel行列值"
  5.    ClientHeight    =   2805
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   4950
  9.    Icon            =   "设置EXCEL行列数.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   2805
  14.    ScaleWidth      =   4950
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   1  '所有者中心
  17.    Begin VB.TextBox Text2 
  18.       BeginProperty DataFormat 
  19.          Type            =   1
  20.          Format          =   "0"
  21.          HaveTrueFalseNull=   0
  22.          FirstDayOfWeek  =   0
  23.          FirstWeekOfYear =   0
  24.          LCID            =   2052
  25.          SubFormatType   =   1
  26.       EndProperty
  27.       Height          =   270
  28.       Left            =   840
  29.       MaxLength       =   2
  30.       TabIndex        =   1
  31.       Top             =   1335
  32.       Width           =   1575
  33.    End
  34.    Begin VB.TextBox Text1 
  35.       BeginProperty DataFormat 
  36.          Type            =   1
  37.          Format          =   "0"
  38.          HaveTrueFalseNull=   0
  39.          FirstDayOfWeek  =   0
  40.          FirstWeekOfYear =   0
  41.          LCID            =   2052
  42.          SubFormatType   =   1
  43.       EndProperty
  44.       Height          =   270
  45.       Left            =   840
  46.       MaxLength       =   2
  47.       TabIndex        =   0
  48.       Top             =   945
  49.       Width           =   1575
  50.    End
  51.    Begin VB.CommandButton Command2 
  52.       Caption         =   "取消(&C)"
  53.       Height          =   300
  54.       Left            =   3720
  55.       TabIndex        =   3
  56.       ToolTipText     =   "缺省值为:20行15列"
  57.       Top             =   2430
  58.       Width           =   1120
  59.    End
  60.    Begin VB.CommandButton Command1 
  61.       Caption         =   "确定(&O)"
  62.       Height          =   300
  63.       Left            =   2490
  64.       TabIndex        =   2
  65.       ToolTipText     =   "使行列值置为您设定的值"
  66.       Top             =   2430
  67.       Width           =   1120
  68.    End
  69.    Begin VB.Frame Frame1 
  70.       Caption         =   " 您打开的文件行列数为"
  71.       Height          =   1575
  72.       Left            =   90
  73.       TabIndex        =   4
  74.       Top             =   720
  75.       Width           =   4755
  76.       Begin VB.Label Label2 
  77.          Height          =   285
  78.          Left            =   300
  79.          TabIndex        =   7
  80.          Top             =   1140
  81.          Width           =   4365
  82.       End
  83.       Begin VB.Label Label5 
  84.          Caption         =   "列数:"
  85.          Height          =   255
  86.          Left            =   255
  87.          TabIndex        =   6
  88.          Top             =   735
  89.          Width           =   525
  90.       End
  91.       Begin VB.Label Label4 
  92.          Caption         =   "行数:"
  93.          Height          =   225
  94.          Left            =   255
  95.          TabIndex        =   5
  96.          Top             =   360
  97.          Width           =   615
  98.       End
  99.    End
  100.    Begin VB.Label Label3 
  101.       Caption         =   "(说明:用EXCEL打开此文件,看看其所需行列值)"
  102.       ForeColor       =   &H00C00000&
  103.       Height          =   195
  104.       Left            =   120
  105.       TabIndex        =   9
  106.       Top             =   30
  107.       Width           =   3825
  108.    End
  109.    Begin VB.Label Label1 
  110.       Caption         =   "请输入您打开的Excel文件的最大行列值:"
  111.       Height          =   255
  112.       Left            =   120
  113.       TabIndex        =   8
  114.       Top             =   390
  115.       Width           =   3285
  116.    End
  117. End
  118. Attribute VB_Name = "frm_rowcol"
  119. Attribute VB_GlobalNameSpace = False
  120. Attribute VB_Creatable = False
  121. Attribute VB_PredeclaredId = True
  122. Attribute VB_Exposed = False
  123. '***********************************************
  124. '*    模 块 名 称 :设置EXCEL行列
  125. '*    功 能 描 述 :
  126. '*    程序员姓名  :奚俊峰
  127. '*    最后修改人  :奚俊峰
  128. '*    最后修改时间:2002/01/21
  129. '***********************************************
  130. Private Sub Command1_Click()
  131.     If Text1.Text = "" Or Val(Text1.Text) > 55 Then
  132.         MsgBox "请输入行数值!" & vbCrLf & "不能大于55", vbInformation + vbOKOnly, "百利/ERP5.0-电子报表"
  133.         Text1.SetFocus
  134.         Exit Sub
  135.     End If
  136.     If Text2.Text = "" Or Val(Text2.Text) > 30 Then
  137.         MsgBox "请输入列数值!" & vbCrLf & "不能大于30", vbInformation + vbOKOnly, "百利/ERP5.0-电子报表"
  138.         Text2.SetFocus
  139.         Exit Sub
  140.     End If
  141.     song_row = Val(Text1.Text) + 1
  142.     song_col = Val(Text2.Text) + 1
  143.     Unload Me
  144. End Sub
  145. Private Sub command2_Click()
  146.     Unload Me
  147. End Sub
  148. Private Sub Text1_Change()
  149.     Dim temp_validate
  150.     If Len(Text1.Text) > 0 Then
  151.         If Not IsNumeric(Right(Text1.Text, 1)) Then
  152.             MsgBox "请输入数字!", vbInformation + vbOKOnly, "百利/ERP5.0-电子报表"
  153.             Text1.SelStart = 0
  154.             Text1.SelLength = Len(Text1.Text)
  155.             Text1.SetFocus
  156.         End If
  157.     End If
  158. End Sub
  159. Private Sub Text1_KeyPress(KeyAscii As Integer)
  160.     If KeyAscii = 13 Then
  161.         If Not IsNumeric(Text1.Text) Then
  162.             MsgBox "请输入数字!", vbInformation + vbOKOnly, "百利/ERP5.0-电子报表"
  163.             Text1.SelStart = 0
  164.             Text1.SelLength = Len(Text1.Text)
  165.             Text1.SetFocus
  166.         Else
  167.             Text2.SetFocus
  168.         End If
  169.     End If
  170. End Sub
  171. Private Sub Text2_KeyPress(KeyAscii As Integer)
  172.     If KeyAscii = 13 Then
  173.         If Not IsNumeric(Text2.Text) Then
  174.             MsgBox "请输入数字!", vbInformation + vbOKOnly, "百利/ERP5.0-电子报表"
  175.             Text2.SelStart = 0
  176.             Text2.SelLength = Len(Text1.Text)
  177.             Text2.SetFocus
  178.         Else
  179.             Command1.SetFocus
  180.         End If
  181.     End If
  182. End Sub
  183. Private Sub Text1_LostFocus()
  184.     If Len(Text1.Text) > 0 Then
  185.         
  186.         If Not IsNumeric(Right(Text1.Text, 1)) Then
  187.             MsgBox "请输入数字!", vbInformation + vbOKOnly, "百利/ERP5.0-电子报表"
  188.             Text1.SelStart = 0
  189.             Text1.SelLength = Len(Text1.Text)
  190.             Text1.SetFocus
  191.         End If
  192.         
  193.     End If
  194.     
  195. End Sub
  196. Private Sub Text2_LostFocus()
  197.     If Len(Text2.Text) > 0 Then
  198.         If Not IsNumeric(Right(Text2.Text, 1)) Then
  199.             MsgBox "请输入数字!", vbInformation + vbOKOnly, "百利/ERP5.0-电子报表"
  200.             Text2.SelStart = 0
  201.             Text2.SelLength = Len(Text1.Text)
  202.             Text2.SetFocus
  203.         End If
  204.     End If
  205.     
  206. End Sub
  207. Private Sub Text2_Change()
  208.     Dim temp_validate
  209.     If Len(Text2.Text) > 0 Then
  210.         If Not IsNumeric(Right(Text2.Text, 1)) Then
  211.             MsgBox "请输入数字!", vbInformation + vbOKOnly, "百利/ERP5.0-电子报表"
  212.             Text2.SelStart = 0
  213.             Text2.SelLength = Len(Text1.Text)
  214.             Text2.SetFocus
  215.         End If
  216.     End If
  217. End Sub
  218. '用excel打开此文件,看看其所需行列值