VERSION 5.00 Begin VB.Form frmSplashScreen Appearance = 0 'Flat AutoRedraw = -1 'True BackColor = &H80000005& BorderStyle = 0 'None Caption = "Заставка" ClientHeight = 3495 ClientLeft = 0 ClientTop = 0 ClientWidth = 4095 LinkTopic = "Form1" ScaleHeight = 3495 ScaleWidth = 4095 ShowInTaskbar = 0 'False StartUpPosition = 2 'CenterScreen Begin VB.Timer Timer1 Left = 120 Top = 360 End Begin VB.Frame Frame1 Height = 3570 Left = 10 TabIndex = 0 Top = -80 Width = 4080 Begin VB.Label Label4 Alignment = 2 'Center BackStyle = 0 'Transparent Caption = "КУРСОВАЯ РАБОТА" BeginProperty Font Name = "MS Serif" Size = 12 Charset = 204 Weight = 700 Underline = -1 'True Italic = -1 'True Strikethrough = 0 'False EndProperty ForeColor = &H00800000& Height = 285 Left = 720 TabIndex = 9 Top = 1320 Width = 2730 End Begin VB.Label Label5 Alignment = 2 'Center BackStyle = 0 'Transparent Caption = "на тему:" Height = 195 Left = 1800 TabIndex = 8 Top = 1560 Width = 630 End Begin VB.Label Label6 Alignment = 2 'Center BackStyle = 0 'Transparent Caption = """Решение нелинейных уравнений методом секущих (хорд)""" BeginProperty Font Name = "Times New Roman" Size = 12 Charset = 204 Weight = 700 Underline = 0 'False Italic = -1 'True Strikethrough = 0 'False EndProperty Height = 675 Left = 240 TabIndex = 7 Top = 1680 Width = 3675 End Begin VB.Label Label7 BackStyle = 0 'Transparent Caption = "Выполнил: студент 1 курса ФАП, группы ТКС-107, Абзалов А. В." Height = 675 Left = 1920 TabIndex = 6 Top = 2280 Width = 1815 End Begin VB.Label Label2 Alignment = 2 'Center BackStyle = 0 'Transparent Caption = "Министерство образования Российской Федерации" BeginProperty Font Name = "MS Sans Serif" Size = 8.25 Charset = 204 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 435 Left = 840 TabIndex = 5 Top = 600 Width = 2580 End Begin VB.Label Label3 BackStyle = 0 'Transparent Caption = "Кафедра информатики" BeginProperty Font Name = "Times New Roman" Size = 9.75 Charset = 204 Weight = 400 Underline = 0 'False Italic = -1 'True Strikethrough = 0 'False EndProperty Height = 225 Left = 1080 TabIndex = 4 Top = 1080 Width = 2070 End Begin VB.Label Label8 BackStyle = 0 'Transparent Caption = "Проверил: преподаватель Рамбургер О. Л." Height = 495 Left = 1920 TabIndex = 3 Top = 2880 Width = 2055 End Begin VB.Label Label9 Alignment = 2 'Center BackStyle = 0 'Transparent Caption = "Уфа - 2005" BeginProperty Font Name = "Arial" Size = 8.25 Charset = 204 Weight = 700 Underline = 0 'False Italic = -1 'True Strikethrough = 0 'False EndProperty Height = 195 Left = 1560 TabIndex = 2 Top = 3360 Width = 855 End Begin VB.Label Label1 Alignment = 2 'Center BackStyle = 0 'Transparent Caption = "Уфимский Государственный Авиационный Технический Университет" BeginProperty Font Name = "MS Sans Serif" Size = 8.25 Charset = 204 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 435 Left = 120 TabIndex = 1 Top = 120 Width = 3855 End End End Attribute VB_Name = "frmSplashScreen" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Form_Click() Loading End Sub Private Sub Form_Load() frmSplashScreen.Height = 3495 frmSplashScreen.Width = 4095 frmSplashScreen.Left = 0 frmSplashScreen.Top = 0 Frame1.Height = 3570 Frame1.Width = 4080 Frame1.Left = 10 Frame1.Top = -80 Timer1.Interval = 2500 Timer1.Interval = 0 End Sub Private Function Loading() Timer1.Interval = 0 frmMainMDI.Show Unload frmSplashScreen End Function Private Sub Frame1_Click() Loading End Sub Private Sub Label1_Click() Loading End Sub Private Sub Label2_Click() Loading End Sub Private Sub Label3_Click() Loading End Sub Private Sub Label4_Click() Loading End Sub Private Sub Label5_Click() Loading End Sub Private Sub Label6_Click() Loading End Sub Private Sub Label7_Click() Loading End Sub Private Sub Label8_Click() Loading End Sub Private Sub Label9_Click() Loading End Sub Private Sub Timer1_Timer() Loading End Sub