VERSION 4.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   3108
   ClientLeft      =   2172
   ClientTop       =   1596
   ClientWidth     =   4572
   Height          =   3432
   Left            =   2124
   LinkTopic       =   "Form1"
   ScaleHeight     =   3108
   ScaleWidth      =   4572
   Top             =   1320
   Width           =   4668
   Begin VB.TextBox Text3 
      Height          =   264
      Left            =   1320
      TabIndex        =   6
      Top             =   1560
      Width           =   2652
   End
   Begin VB.TextBox Text2 
      Height          =   264
      Left            =   1320
      TabIndex        =   2
      Text            =   "0"
      Top             =   1080
      Width           =   2652
   End
   Begin VB.CommandButton Command1 
      Caption         =   "o"
      Height          =   372
      Left            =   840
      TabIndex        =   1
      Top             =   2160
      Width           =   2652
   End
   Begin VB.TextBox Text1 
      Height          =   264
      Left            =   1320
      TabIndex        =   0
      Top             =   600
      Width           =   2652
   End
   Begin VB.Label Label3 
      Caption         =   ""
      Height          =   252
      Left            =   240
      TabIndex        =   5
      Top             =   1560
      Width           =   972
   End
   Begin VB.Label Label2 
      Caption         =   "IR[h"
      Height          =   252
      Left            =   240
      TabIndex        =   4
      Top             =   1080
      Width           =   972
   End
   Begin VB.Label Label1 
      Caption         =   "t@C"
      Height          =   252
      Left            =   240
      TabIndex        =   3
      Top             =   600
      Width           =   972
   End
End
Attribute VB_Name = "Form1"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Private Sub Command1_Click()
    dwResult = JVbcode(Text1.Text, Text2.Text)
    Text3.Text = dwResult
End Sub

Private Sub Form_Initialize()
    If Command <> "" Then
        Text1.Text = Command
    End If
End Sub

