/[projects]/dao/DelphiScanner/Components/tpsystools_4.04/examples/COM/vb6/Form1.frm
ViewVC logotype

Contents of /dao/DelphiScanner/Components/tpsystools_4.04/examples/COM/vb6/Form1.frm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2671 - (show annotations) (download)
Tue Aug 25 18:15:15 2015 UTC (8 years, 10 months ago) by torben
File size: 1385 byte(s)
Added tpsystools component
1 VERSION 5.00
2 Begin VB.Form Form1
3 Caption = "Form1"
4 ClientHeight = 900
5 ClientLeft = 60
6 ClientTop = 345
7 ClientWidth = 4680
8 LinkTopic = "Form1"
9 ScaleHeight = 900
10 ScaleWidth = 4680
11 StartUpPosition = 3 'Windows Default
12 Begin VB.TextBox Text2
13 Height = 285
14 Left = 120
15 TabIndex = 2
16 Top = 480
17 Width = 3015
18 End
19 Begin VB.TextBox Text1
20 Height = 285
21 Left = 120
22 TabIndex = 1
23 Top = 120
24 Width = 3015
25 End
26 Begin VB.CommandButton Command1
27 Caption = "Calculate"
28 Default = -1 'True
29 Height = 495
30 Left = 3360
31 TabIndex = 0
32 Top = 240
33 Width = 1215
34 End
35 End
36 Attribute VB_Name = "Form1"
37 Attribute VB_GlobalNameSpace = False
38 Attribute VB_Creatable = False
39 Attribute VB_PredeclaredId = True
40 Attribute VB_Exposed = False
41 Private Sub Command1_Click()
42 Dim Ex As SysTools.StExpr
43
44 Set Ex = CreateObject("SysTools.StExpr")
45
46 Ex.License ("STD200784B6324DFD")
47
48 Text2.Text = Ex.AnalyzeExpr(Text1.Text)
49 Text1.SetFocus
50
51 Set Ex = Nothing
52 End Sub
53

  ViewVC Help
Powered by ViewVC 1.1.20