home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmAbout
- BorderStyle = 1 'Fixed Single
- Caption = "About"
- ClientHeight = 2532
- ClientLeft = 1308
- ClientTop = 1752
- ClientWidth = 5292
- Height = 2856
- Left = 1260
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2532
- ScaleWidth = 5292
- Top = 1476
- Width = 5388
- Begin SSPanel pnlBackground
- Height = 2532
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 5292
- Begin SSPanel pnlDebug
- BevelOuter = 1 'Inset
- Caption = "debug"
- Height = 252
- Left = 1080
- TabIndex = 5
- Top = 1920
- Width = 2772
- End
- Begin SSPanel pnlFixed
- BevelOuter = 1 'Inset
- Caption = "fixed"
- Height = 252
- Left = 1080
- TabIndex = 7
- Top = 1560
- Width = 2772
- End
- Begin SSPanel pnlVersion
- BevelOuter = 1 'Inset
- Caption = "version"
- Height = 252
- Left = 1080
- TabIndex = 4
- Top = 1200
- Width = 2772
- End
- Begin SSPanel pnlIcon
- BevelOuter = 1 'Inset
- Height = 492
- Left = 360
- TabIndex = 2
- Top = 360
- Width = 492
- Begin Image imgIcon
- Height = 384
- Left = 50
- Picture = RWVBINFO.FRX:0000
- Top = 50
- Width = 384
- End
- End
- Begin CommandButton btnOK
- Caption = "OK"
- Default = -1 'True
- Height = 372
- Left = 4080
- TabIndex = 1
- Top = 420
- Width = 972
- End
- Begin Label txtCopyright
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "Copyright Criterion Software Ltd. 94"
- Height = 252
- Left = 960
- TabIndex = 6
- Top = 600
- Width = 3012
- End
- Begin Label txtTitle
- Alignment = 2 'Center
- BackColor = &H00C0C0C0&
- Caption = "RenderWare Visual Basic Viewer"
- Height = 252
- Left = 960
- TabIndex = 3
- Top = 240
- Width = 3012
- End
- End
- Option Explicit
- Sub btnOK_Click ()
- Unload Me
- End Sub
- Sub Form_Load ()
- Dim Version As String
- Dim FixedState As String
- Dim DebugState As String
- Dim VRel As Variant
- Version = Space$(8)
- FixedState = Space$(4)
- DebugState = Space$(4)
- VRel = RwGetSystemInfo(rwVERSIONSTRING, Version, 8)
- VRel = RwGetSystemInfo(rwFIXEDPOINTLIB, FixedState, 4)
- VRel = RwGetSystemInfo(rwDEBUGGINGLIB, DebugState, 4)
- pnlVersion.Caption = Version
- If Asc(FixedState) <> 0 Then
- pnlFixed = "Fixed Point"
- Else
- pnlFixed = "Floating Point"
- End If
- If Asc(DebugState) <> 0 Then
- pnlDebug = "DEBUG"
- Else
- pnlDebug = "Production"
- End If
- End Sub
-