VBLM_RT4.frm

VERSION 4.00

Begin VB.Form frmVBLM_RTS

BackColor = &H00C0C0C0& 

BorderStyle = 3 'Fixed Dialog 

ClientHeight = 2850 

ClientLeft = 4065 

ClientTop = 2295 

ClientWidth = 3465 

ControlBox = 0 'False 

BeginProperty Font  

name = "MS Sans Serif" 

charset = 1 

weight = 700 

size = 8.25 

underline = 0 'False 

italic = 0 'False 

strikethrough = 0 'False 

EndProperty 

ForeColor = &H80000008& 

Height = 3255 

Left = 4005 

MaxButton = 0 'False 

MinButton = 0 'False 

ScaleHeight = 2850 

ScaleWidth = 3465 

Top = 1950 

Width = 3585 

Begin VB.CommandButton cmdOK  

Appearance = 0 'Flat 

BackColor = &H80000005& 

Caption = "OK" 

Default = -1 'True 

BeginProperty Font  

name = "MS Sans Serif" 

charset = 0 

weight = 400 

size = 8.25 

underline = 0 'False 

italic = 0 'False 

strikethrough = 0 'False 

EndProperty 

Height = 375 

Left = 1020 

TabIndex = 1 

Top = 1740 

Width = 1455 

End 

Begin VB.ListBox lstLanguages  

BeginProperty Font  

name = "MS Sans Serif" 

charset = 0 

weight = 400 

size = 8.25 

underline = 0 'False 

italic = 0 'False 

strikethrough = 0 'False 

EndProperty 

Height = 1005 

Left = 240 

TabIndex = 0 

Top = 540 

Width = 2895 

End 

Begin VB.Label lbl  

Alignment = 2 'Center 

Appearance = 0 'Flat 

BackColor = &H80000005& 

BackStyle = 0 'Transparent 

Caption = "Runtime Multi-Language Support by VB Language Manager from WhippleWare©" 

BeginProperty Font  

name = "MS Sans Serif" 

charset = 1 

weight = 400 

size = 8.25 

underline = 0 'False 

italic = 0 'False 

strikethrough = 0 'False 

EndProperty 

ForeColor = &H80000008& 

Height = 435 

Index = 1 

Left = 120 

TabIndex = 3 

Top = 2280 

Width = 3255 

End 

Begin VB.Label lbl  

Alignment = 2 'Center 

Appearance = 0 'Flat 

BackColor = &H80000005& 

BackStyle = 0 'Transparent 

Caption = "Please Select a Language" 

BeginProperty Font  

name = "MS Sans Serif" 

charset = 0 

weight = 400 

size = 8.25 

underline = 0 'False 

italic = 0 'False 

strikethrough = 0 'False 

EndProperty 

ForeColor = &H80000008& 

Height = 195 

Index = 0 

Left = 240 

TabIndex = 2 

Top = 180 

Width = 2835 

End 

End

Attribute VB_Name = "frmVBLM_RTS"

Attribute VB_Creatable = False

Attribute VB_Exposed = False

Option Explicit

 

Private Sub cmdOK_Click()

 

If lstLanguages.ListIndex > True Then 

Me.Hide 

Else: Beep 

End If 

 

End Sub

 

Private Sub Form_Load()

 

End Sub

 

Private Sub lstLanguages_DblClick()

cmdOK_Click 

End Sub