home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmAbout
- BackColor = &H00FFFFFF&
- BorderStyle = 4 'Fixed ToolWindow
- Caption = "About"
- ClientHeight = 2415
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 3615
- Icon = "frmAbout.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 161
- ScaleMode = 3 'Pixel
- ScaleWidth = 241
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin VB.Label AU
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Susaji"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00C00000&
- Height = 255
- Left = 2400
- TabIndex = 3
- Top = 1350
- Width = 1095
- End
- Begin VB.Label btnAceptar
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Aceptar"
- BeginProperty Font
- Name = "Tahoma"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 255
- Left = 1200
- TabIndex = 2
- Top = 1920
- Width = 1215
- End
- Begin VB.Label lblPrompt
- BackStyle = 0 'Transparent
- Caption = "Dise
- ado para hacer facil, rapido y comodo el manejo del SystemTray."
- BeginProperty Font
- Name = "Tahoma"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00C00000&
- Height = 735
- Left = 240
- TabIndex = 1
- Top = 840
- Width = 3135
- End
- Begin VB.Label lblTitle
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "SysTray"
- BeginProperty Font
- Name = "Tahoma"
- Size = 11.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00C00000&
- Height = 375
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 1095
- End
- Begin VB.Image Image1
- Height = 405
- Left = 1320
- Picture = "frmAbout.frx":0902
- Top = 120
- Width = 2010
- End
- Begin VB.Shape Shape2
- BackColor = &H00FFFFFF&
- BackStyle = 1 'Opaque
- BorderColor = &H00FFC0C0&
- FillColor = &H00FFC0C0&
- Height = 735
- Left = 0
- Top = 0
- Width = 3615
- End
- Begin VB.Shape Shape1
- BackColor = &H00E0E0E0&
- BackStyle = 1 'Opaque
- BorderColor = &H00FFC0C0&
- Height = 975
- Left = 0
- Top = 720
- Width = 3615
- End
- Begin VB.Shape Shape3
- BackColor = &H00C0C0C0&
- BackStyle = 1 'Opaque
- BorderColor = &H00C0C0C0&
- Height = 735
- Left = 0
- Top = 1680
- Width = 3615
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub btnAceptar_Click()
- Unload Me
- End Sub
- Private Sub btnAceptar_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
- If btnAceptar.ForeColor = vbBlue Then
- btnAceptar.ForeColor = vbRed
- End If
- End Sub
- Private Sub Form_Load()
- btnAceptar.ForeColor = vbBlue
- End Sub
- Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
- If btnAceptar.ForeColor = vbRed Then
- btnAceptar.ForeColor = vbBlue
- End If
- End Sub
-