VERSION 5.00 Begin VB.Form AboutDialog BorderStyle = 3 'Fixed Dialog Caption = "About RiOFXP" ClientHeight = 1815 ClientLeft = 2760 ClientTop = 3750 ClientWidth = 6255 ControlBox = 0 'False LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1815 ScaleWidth = 6255 Begin VB.TextBox AboutText Height = 1095 Left = 120 Locked = -1 'True MultiLine = -1 'True TabIndex = 1 Top = 120 Width = 6015 End Begin VB.CommandButton OKButton Caption = "OK" Default = -1 'True Height = 375 Left = 120 TabIndex = 0 Top = 1320 Width = 6015 End End Attribute VB_Name = "AboutDialog" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub Form_Load() AboutText.Text = "RiOFXP 1.0 by Tom Kistner " _ + Chr(13) + Chr(10) + _ "based on the Rio500Remix COM object by Andy Sherwood " _ + Chr(13) + Chr(10) + _ Chr(13) + Chr(10) + _ "URL: http://duncanthrax.net/riofxp/" _ + Chr(13) + Chr(10) + _ "see README.TXT for the full details" End Sub Private Sub OKButton_Click() RioFXP.Enabled = True Unload AboutDialog End Sub