⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmabout.frm

📁 Resuelve ecuaciones cuadraticas
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmAbout 
   BackColor       =   &H80000007&
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Ecuaciones Cuadraticas TOTAL SOLVER v1.0"
   ClientHeight    =   4185
   ClientLeft      =   2340
   ClientTop       =   1935
   ClientWidth     =   5130
   ClipControls    =   0   'False
   Icon            =   "frmAbout.frx":0000
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2888.561
   ScaleMode       =   0  'User
   ScaleWidth      =   4817.335
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  'CenterOwner
   Begin VB.CommandButton cmdOK 
      Cancel          =   -1  'True
      Caption         =   "Aceptar"
      Default         =   -1  'True
      Height          =   345
      Left            =   120
      TabIndex        =   0
      Top             =   2760
      Width           =   1500
   End
   Begin VB.Timer Timer1 
      Interval        =   200
      Left            =   -120
      Top             =   3720
   End
   Begin VB.Label lblDisclaimer 
      BackColor       =   &H00000000&
      BorderStyle     =   1  'Fixed Single
      Caption         =   "Advertencia: Prohibida la copia parcial o total sin la autorizaci髇 de los realizadores."
      BeginProperty Font 
         Name            =   "Arial Black"
         Size            =   9.75
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00000080&
      Height          =   825
      Left            =   120
      TabIndex        =   7
      Top             =   3240
      Width           =   4935
   End
   Begin VB.Label lblTitle 
      BackColor       =   &H00000000&
      Caption         =   "Ecuaciones Cuadraticas"
      BeginProperty Font 
         Name            =   "Arial Black"
         Size            =   12
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H000000FF&
      Height          =   360
      Left            =   240
      TabIndex        =   6
      Top             =   120
      Width           =   3765
   End
   Begin VB.Label lblDescription 
      BackColor       =   &H00000000&
      Caption         =   "Realizado por:"
      BeginProperty Font 
         Name            =   "Verdana"
         Size            =   11.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   330
      Left            =   240
      TabIndex        =   5
      Top             =   1200
      Width           =   1725
   End
   Begin VB.Label Label1 
      BackColor       =   &H00000000&
      Caption         =   "TOTAL SOLVER v1.0"
      BeginProperty Font 
         Name            =   "Arial Black"
         Size            =   12
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H000000FF&
      Height          =   360
      Left            =   2040
      TabIndex        =   4
      Top             =   600
      Width           =   3765
   End
   Begin VB.Label Label2 
      BackColor       =   &H00000000&
      Caption         =   "Heccer Benavides"
      BeginProperty Font 
         Name            =   "Verdana"
         Size            =   11.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   330
      Left            =   840
      TabIndex        =   3
      Top             =   1560
      Width           =   2085
   End
   Begin VB.Label Label3 
      BackColor       =   &H00000000&
      Caption         =   "Angel Yanez"
      BeginProperty Font 
         Name            =   "Verdana"
         Size            =   11.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   330
      Left            =   840
      TabIndex        =   2
      Top             =   2280
      Width           =   1725
   End
   Begin VB.Label Label4 
      BackColor       =   &H00000000&
      Caption         =   "Christian Rivas"
      BeginProperty Font 
         Name            =   "Verdana"
         Size            =   11.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   330
      Left            =   840
      TabIndex        =   1
      Top             =   1920
      Width           =   1725
   End
   Begin VB.Image Image1 
      Height          =   1800
      Left            =   3000
      Picture         =   "frmAbout.frx":08CA
      Top             =   1080
      Width           =   1800
   End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public b As Integer
Public espacio As String

Private Sub cmdOK_Click()
    frmAbout.Hide
End Sub

Private Sub Form_Load()
b = 1
espacio = ""
End Sub

Private Sub Timer1_Timer()
If b = -1 Then
    espacio = Mid(espacio, 1, Len(espacio) - 1)
Else
    espacio = espacio & " "
End If
frmAbout.Caption = espacio & "Ecuaciones Cuadraticas TOTAL SOLVER v1.0"
If Len(espacio) > 7 Then
    b = b * -1
End If
If Len(espacio) = 0 Then
    b = b * -1
End If
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -