Subversion Repositories projects.vncstarter

Rev

Blame | Last modification | View Log

VERSION 5.00
Begin VB.Form frmAbout 
   BackColor       =   &H00FFFFFF&
   BorderStyle     =   1  'Fixed Single
   Caption         =   "About VNC Viewer Starter"
   ClientHeight    =   3585
   ClientLeft      =   45
   ClientTop       =   435
   ClientWidth     =   7065
   Icon            =   "frmAbout.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   239
   ScaleMode       =   3  'Pixel
   ScaleWidth      =   471
   StartUpPosition =   2  'CenterScreen
   Begin VB.TextBox Text2 
      BorderStyle     =   0  'None
      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          =   210
      Left            =   4170
      Locked          =   -1  'True
      MousePointer    =   99  'Custom
      TabIndex        =   3
      Text            =   "http://vncstarter.sourceforge.net"
      Top             =   2355
      Width           =   2415
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Command1"
      Height          =   195
      Left            =   660
      TabIndex        =   0
      Top             =   3750
      Width           =   345
   End
   Begin VNCstarter.jjButton jjButton1 
      Height          =   765
      Left            =   2685
      TabIndex        =   1
      Top             =   180
      Width           =   4050
      _ExtentX        =   7144
      _ExtentY        =   1349
      Enabled         =   0   'False
      BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "Arial"
         Size            =   18
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Caption         =   "VNC Viewer Starter"
      jjButtonStyle   =   9
   End
   Begin VB.TextBox Text1 
      BorderStyle     =   0  'None
      Height          =   2040
      Left            =   2625
      Locked          =   -1  'True
      MousePointer    =   1  'Arrow
      MultiLine       =   -1  'True
      TabIndex        =   2
      TabStop         =   0   'False
      Text            =   "frmAbout.frx":014A
      Top             =   990
      Width           =   4125
   End
   Begin VB.Image Image1 
      Height          =   1920
      Left            =   120
      Picture         =   "frmAbout.frx":01F1
      Top             =   240
      Width           =   1920
   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 Form_Load()
Text2.MouseIcon = LoadResPicture(101, 2)
End Sub

Private Sub Text2_Click()
    Dim retval As Long
    'Start andre filer i programmet det er linket mot
    retval = ShellExecute(Me.hwnd, vbNullString, Text2.Text, _
     vbNullString, vbNullString, SW_SHOWNORMAL)
    'brwWebBrowser.Navigate jjButton3.Caption
End Sub