Formclass3.frm
上传用户:bubble
上传日期:2007-03-02
资源大小:403k
文件大小:6k
源码类别:

教育系统应用

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Formclass3 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "班级查询"
  5.    ClientHeight    =   2895
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   3990
  9.    Icon            =   "Formclass3.frx":0000
  10.    LinkTopic       =   "Form2"
  11.    MaxButton       =   0   'False
  12.    MDIChild        =   -1  'True
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2895
  15.    ScaleWidth      =   3990
  16.    Begin VB.TextBox Text1 
  17.       BackColor       =   &H80000018&
  18.       BeginProperty Font 
  19.          Name            =   "宋体"
  20.          Size            =   10.5
  21.          Charset         =   134
  22.          Weight          =   400
  23.          Underline       =   0   'False
  24.          Italic          =   0   'False
  25.          Strikethrough   =   0   'False
  26.       EndProperty
  27.       Height          =   270
  28.       Index           =   0
  29.       Left            =   1560
  30.       TabIndex        =   3
  31.       Top             =   960
  32.       Width           =   975
  33.    End
  34.    Begin VB.CommandButton Command1 
  35.       Caption         =   "确定"
  36.       Height          =   255
  37.       Left            =   1440
  38.       TabIndex        =   2
  39.       Top             =   2520
  40.       Width           =   1095
  41.    End
  42.    Begin VB.TextBox Text1 
  43.       BackColor       =   &H80000018&
  44.       BeginProperty Font 
  45.          Name            =   "宋体"
  46.          Size            =   10.5
  47.          Charset         =   134
  48.          Weight          =   400
  49.          Underline       =   0   'False
  50.          Italic          =   0   'False
  51.          Strikethrough   =   0   'False
  52.       EndProperty
  53.       Height          =   255
  54.       Index           =   1
  55.       Left            =   1560
  56.       TabIndex        =   1
  57.       Top             =   1440
  58.       Width           =   1215
  59.    End
  60.    Begin VB.TextBox Text1 
  61.       BackColor       =   &H80000018&
  62.       BeginProperty Font 
  63.          Name            =   "宋体"
  64.          Size            =   10.5
  65.          Charset         =   134
  66.          Weight          =   400
  67.          Underline       =   0   'False
  68.          Italic          =   0   'False
  69.          Strikethrough   =   0   'False
  70.       EndProperty
  71.       Height          =   255
  72.       Index           =   2
  73.       Left            =   1560
  74.       TabIndex        =   0
  75.       Top             =   1920
  76.       Width           =   1695
  77.    End
  78.    Begin VB.Label Label4 
  79.       Caption         =   "专业:"
  80.       BeginProperty Font 
  81.          Name            =   "宋体"
  82.          Size            =   10.5
  83.          Charset         =   134
  84.          Weight          =   400
  85.          Underline       =   0   'False
  86.          Italic          =   0   'False
  87.          Strikethrough   =   0   'False
  88.       EndProperty
  89.       ForeColor       =   &H00C00000&
  90.       Height          =   255
  91.       Left            =   840
  92.       TabIndex        =   7
  93.       Top             =   1920
  94.       Width           =   1575
  95.    End
  96.    Begin VB.Label Label2 
  97.       Caption         =   "班级:"
  98.       BeginProperty Font 
  99.          Name            =   "宋体"
  100.          Size            =   10.5
  101.          Charset         =   134
  102.          Weight          =   400
  103.          Underline       =   0   'False
  104.          Italic          =   0   'False
  105.          Strikethrough   =   0   'False
  106.       EndProperty
  107.       ForeColor       =   &H00C00000&
  108.       Height          =   255
  109.       Left            =   840
  110.       TabIndex        =   6
  111.       Top             =   1440
  112.       Width           =   1455
  113.    End
  114.    Begin VB.Label Label1 
  115.       Caption         =   "年级:"
  116.       BeginProperty Font 
  117.          Name            =   "宋体"
  118.          Size            =   10.5
  119.          Charset         =   134
  120.          Weight          =   400
  121.          Underline       =   0   'False
  122.          Italic          =   0   'False
  123.          Strikethrough   =   0   'False
  124.       EndProperty
  125.       ForeColor       =   &H00C00000&
  126.       Height          =   255
  127.       Left            =   840
  128.       TabIndex        =   5
  129.       Top             =   960
  130.       Width           =   975
  131.    End
  132.    Begin VB.Label Label3 
  133.       Caption         =   "班级设置查询"
  134.       BeginProperty Font 
  135.          Name            =   "华文中宋"
  136.          Size            =   15.75
  137.          Charset         =   134
  138.          Weight          =   400
  139.          Underline       =   0   'False
  140.          Italic          =   0   'False
  141.          Strikethrough   =   0   'False
  142.       EndProperty
  143.       Height          =   375
  144.       Left            =   840
  145.       TabIndex        =   4
  146.       Top             =   120
  147.       Width           =   2175
  148.    End
  149. End
  150. Attribute VB_Name = "Formclass3"
  151. Attribute VB_GlobalNameSpace = False
  152. Attribute VB_Creatable = False
  153. Attribute VB_PredeclaredId = True
  154. Attribute VB_Exposed = False
  155. Private Sub Command1_Click()
  156. txtsql = ""
  157. If Text1(0).Text <> "" Then
  158.   
  159.   If txtsql = "" Then
  160.     txtsql = "年级='" & Trim(Text1(0).Text) & "'"
  161.   Else
  162.     txtsql = txtsql & "and 年级='" & Trim(Text1(0).Text) & "'"
  163.   End If
  164. End If
  165. If Text1(1).Text <> "" Then
  166.   If txtsql = "" Then
  167.     txtsql = "班级='" & Trim(Text1(1).Text) & "'"
  168.   Else
  169.     txtsql = txtsql & "and 班级='" & Trim(Text1(1).Text) & "'"
  170.   End If
  171. End If
  172. If Text1(2).Text <> "" Then
  173.   aa = 1
  174.   If txtsql = "" Then
  175.     txtsql = "专业='" & Trim(Text1(2).Text) & "'"
  176.   Else
  177.     txtsql = txtsql & "and 专业='" & Trim(Text1(2).Text) & "'"
  178.   End If
  179. End If
  180. If txtsql = "" Then
  181.   ss = MsgBox("你至少要输入一个条件以上才能查询!", , " 警告")
  182.   Text1(0).SetFocus
  183.   Exit Sub
  184.   
  185. End If
  186. txtsql = "select * from class where " & txtsql
  187. Dim mrc As ADODB.Recordset
  188. Set mrc = ExecuteSQL(txtsql)
  189. If mrc.EOF = True Then
  190.  zzz = MsgBox("对不起,没有此班级的档案记录!", vbOKOnly, "查询")
  191.    Formclass3.ZOrder (0)
  192.    Formclass3.Text1(0).SetFocus
  193.    Exit Sub
  194. End If
  195. Formclass2.printstr = txtsql
  196. classfind = True
  197. Formclass2.Show
  198. Formclass2.classshowtitle
  199. Formclass2.classshowdata
  200. Formclass2.Caption = "班级设置查询结果"
  201. Formclass2.ZOrder (0)
  202. End Sub
  203. Private Sub Form_Unload(Cancel As Integer)
  204. classfind = False
  205. End Sub