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

📄 frmabout.frm

📁 使用Winsock控制检测是否有邮件邮件服务器必须支持POP3
💻 FRM
字号:
VERSION 5.00
Object = "{8E27C92E-1264-101C-8A2F-040224009C02}#7.0#0"; "MSCAL.OCX"
Begin VB.Form frmAbout 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Acerca de E-checker"
   ClientHeight    =   3195
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   3660
   Icon            =   "frmAbout.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "frmAbout.frx":000C
   ScaleHeight     =   3195
   ScaleWidth      =   3660
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Begin MSACAL.Calendar Calendar1 
      Height          =   2595
      Left            =   60
      TabIndex        =   5
      Top             =   300
      Width           =   3555
      _Version        =   524288
      _ExtentX        =   6271
      _ExtentY        =   4577
      _StockProps     =   1
      BackColor       =   -2147483633
      Year            =   1998
      Month           =   8
      Day             =   7
      DayLength       =   1
      MonthLength     =   2
      DayFontColor    =   0
      FirstDay        =   1
      GridCellEffect  =   1
      GridFontColor   =   10485760
      GridLinesColor  =   -2147483632
      ShowDateSelectors=   -1  'True
      ShowDays        =   -1  'True
      ShowHorizontalGrid=   -1  'True
      ShowTitle       =   -1  'True
      ShowVerticalGrid=   -1  'True
      TitleFontColor  =   10485760
      ValueIsNull     =   0   'False
      BeginProperty DayFont {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "Arial"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      BeginProperty GridFont {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "Arial"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      BeginProperty TitleFont {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "Arial"
         Size            =   12
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
   End
   Begin VB.CommandButton cmdAceptar 
      Caption         =   "Aceptar"
      Default         =   -1  'True
      Height          =   495
      Left            =   1260
      TabIndex        =   0
      Top             =   2520
      Width           =   1275
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      Caption         =   "(c) 1998"
      Height          =   255
      Index           =   3
      Left            =   840
      TabIndex        =   4
      Top             =   960
      Width           =   2115
   End
   Begin VB.Image imgUser 
      Height          =   630
      Left            =   1620
      MouseIcon       =   "frmAbout.frx":095E
      MousePointer    =   99  'Custom
      Picture         =   "frmAbout.frx":0AB0
      Top             =   1740
      Width           =   645
   End
   Begin VB.Label Label1 
      Caption         =   "e-mail: jmoreyra@altavista.net"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   -1  'True
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF0000&
      Height          =   255
      Index           =   2
      Left            =   840
      MouseIcon       =   "frmAbout.frx":162A
      MousePointer    =   99  'Custom
      TabIndex        =   3
      Top             =   1440
      Width           =   2115
   End
   Begin VB.Label Label1 
      Caption         =   "JULIO DANIEL MOREYRA "
      Height          =   255
      Index           =   1
      Left            =   840
      TabIndex        =   2
      Top             =   600
      Width           =   2115
   End
   Begin VB.Label Label1 
      Caption         =   "Desarrollo:"
      Height          =   255
      Index           =   0
      Left            =   840
      TabIndex        =   1
      Top             =   300
      Width           =   1035
   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 cmdAceptar_Click()
    Unload Me
End Sub

Private Sub Form_Load()
    Me.Caption = LoadResString(Language + 30) + " E-checker"
    cmdAceptar.Caption = LoadResString(Language + 2)
    Label1(0) = LoadResString(Language + 31)
End Sub

Private Sub imgUser_Click()
    Static bmpimage As Integer
    
    If bmpimage = 0 Then bmpimage = 101
        
    imgUser.Picture = LoadResPicture(bmpimage, vbResBitmap)
    
    If bmpimage = 101 Then bmpimage = 102 Else bmpimage = 101
    
End Sub

'Esto es para llamar al programa de e-mail
Private Sub Label1_Click(Index As Integer)
    Dim result As Long
    
    If Index = 2 Then
        Screen.MousePointer = vbHourglass
        result = ShellExecute(Me.hwnd, vbNullString, "mailto:jmoreyra@altavista.net", vbNullString, "c:\", 1)
        Screen.MousePointer = vbNormal
    End If
    
End Sub

⌨️ 快捷键说明

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