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

📄 frmabout.frm

📁 Visuabaic interface with com connect to computer
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmAbout 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "About MyApp"
   ClientHeight    =   3555
   ClientLeft      =   2340
   ClientTop       =   1935
   ClientWidth     =   5730
   ClipControls    =   0   'False
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2453.724
   ScaleMode       =   0  'User
   ScaleWidth      =   5380.766
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Begin VB.PictureBox Picture1 
      AutoSize        =   -1  'True
      Height          =   1020
      Left            =   120
      Picture         =   "frmAbout.frx":0000
      ScaleHeight     =   960
      ScaleWidth      =   960
      TabIndex        =   3
      Top             =   720
      Width           =   1020
   End
   Begin VB.CommandButton cmdOK 
      Cancel          =   -1  'True
      Caption         =   "OK"
      Default         =   -1  'True
      Height          =   345
      Left            =   3720
      TabIndex        =   0
      Top             =   2880
      Width           =   1260
   End
   Begin VB.Label Label3 
      Caption         =   "Version: 1.1"
      Height          =   255
      Left            =   1440
      TabIndex        =   6
      Top             =   720
      Width           =   1455
   End
   Begin VB.Label Label2 
      Caption         =   "AVR RS232 interface"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   13.5
         Charset         =   161
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   1440
      TabIndex        =   5
      Top             =   240
      Width           =   3855
   End
   Begin VB.Label Label1 
      Caption         =   "You can not  use any part of this project for commercial use. You have to take the license  from Serasidis Vasilis to do that."
      Height          =   615
      Left            =   1440
      TabIndex        =   4
      Top             =   1800
      Width           =   3735
   End
   Begin VB.Line Line1 
      BorderColor     =   &H00808080&
      BorderStyle     =   6  'Inside Solid
      Index           =   1
      X1              =   84.515
      X2              =   5309.398
      Y1              =   1687.583
      Y2              =   1687.583
   End
   Begin VB.Label lblDescription 
      Caption         =   "This software its a demonstration for how to control some AVR microcontroller (AT90s2313 in this example) via Visual Basic."
      ForeColor       =   &H00000000&
      Height          =   645
      Left            =   1440
      TabIndex        =   1
      Top             =   1080
      Width           =   3885
   End
   Begin VB.Line Line1 
      BorderColor     =   &H00FFFFFF&
      BorderWidth     =   2
      Index           =   0
      X1              =   98.6
      X2              =   5309.398
      Y1              =   1697.936
      Y2              =   1697.936
   End
   Begin VB.Label lblDisclaimer 
      Caption         =   "(c) 13.09.2003 by Serasidis Vasilis. Home page Http://www.serasidis.gr  eMail: info@serasidis.gr"
      ForeColor       =   &H00000000&
      Height          =   705
      Left            =   255
      TabIndex        =   2
      Top             =   2625
      Width           =   2670
   End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit


Private Sub cmdOK_Click()
  Unload Me
End Sub

Private Sub Form_Load()
    Me.Caption = "About " & App.Title
End Sub

⌨️ 快捷键说明

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