VERSION 5.00 Begin VB.Form AddFolderDialog BorderStyle = 3 'Fixed Dialog Caption = "Add Folder to Rio" ClientHeight = 1305 ClientLeft = 2760 ClientTop = 3750 ClientWidth = 3855 ControlBox = 0 'False LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1305 ScaleWidth = 3855 Begin VB.Frame Frame1 Caption = "New Folder Name" Height = 615 Left = 120 TabIndex = 1 Top = 120 Width = 3615 Begin VB.TextBox FolderName Height = 285 Left = 120 TabIndex = 2 Text = "MyCoolMusic" Top = 240 Width = 3375 End End Begin VB.CommandButton OKButton Caption = "OK" Default = -1 'True Height = 375 Left = 120 TabIndex = 0 Top = 840 Width = 3615 End End Attribute VB_Name = "AddFolderDialog" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub OKButton_Click() OKButton.Enabled = False AddFolderDialog.Enabled = False RioFXP.Enabled = True RioFXP.CreateFolder (FolderName.Text) Unload AddFolderDialog End Sub