Index: UefiDriverWizardUefiDriverWizard.py
===================================================================
--- UefiDriverWizardUefiDriverWizard.py	(revision 11)
+++ UefiDriverWizardUefiDriverWizard.py	(working copy)
@@ -1,7 +1,7 @@
 ## @file
 # Subclass of UefiDriverWizard, which is generated by wxFormBuilder.
 #
-# Copyright (c) 2012, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2012 - 2014, Intel Corporation. All rights reserved.<BR>
 #
 # This program and the accompanying materials are licensed and made available
 # under the terms and conditions of the BSD License which accompanies this
@@ -40,6 +40,11 @@
 class UefiDriverWizardUefiDriverWizard( UefiDriverWizard.UefiDriverWizard ):
   def __init__( self, parent ):
     UefiDriverWizard.UefiDriverWizard.__init__( self, parent )
+    self.newUefiDriver.Enable(False)
+    self.newProtocol.Enable(False)
+    self.newPackage.Enable(False)
+    self.newGuid.Enable(False)
+    self.newLibraryClass.Enable(False)
 
   def WorkspaceValid(self):
     if Config.WorkspacePath == '':
@@ -66,12 +71,20 @@
         Config.App.TopWindow.SetTitle ("%s - UEFI Driver Wizard" % (Config.WorkspacePath))
         dlg.Destroy()
         self.LogMessageWindow.AppendText('\nWORKSPACE %s selected\n' % (Config.WorkspacePath))
-        dlg = wx.MessageDialog(self, 'WORKSPACE %s selected' % (Config.WorkspacePath), 'EDK II WORKSPACE Path', wx.OK | wx.ICON_INFORMATION)
-        dlg.ShowModal()
-        dlg.Destroy()
+        self.newUefiDriver.Enable(True)
+        self.newProtocol.Enable(True)
+        self.newPackage.Enable(True)
+        self.newGuid.Enable(True)
+        self.newLibraryClass.Enable(True)
+    
         return
       Config.WorkspacePath = ''
       Config.App.TopWindow.SetTitle ("UEFI Driver Wizard")
+      self.newUefiDriver.Enable(False)
+      self.newProtocol.Enable(False)
+      self.newPackage.Enable(False)
+      self.newGuid.Enable(False)
+      self.newLibraryClass.Enable(False)
     Config.WorkspacePath = ''
     dlg.Destroy()
 
@@ -112,7 +125,7 @@
     info = wx.AboutDialogInfo()
     info.Name = "UEFI Driver Wizard"
     info.Version = "0.11"
-    info.Copyright = "Copyright (C) 2012 Intel Corporation. All rights reserved"
+    info.Copyright = "Copyright (C) 2012-2014 Intel Corporation. All rights reserved"
     info.Icon = wx.Icon(os.path.join(os.path.abspath(sys.path[0]), 'Logo.png'), wx.BITMAP_TYPE_PNG)
     info.Description = '''
 This wizard is designed to aid in the development of UEFI Drivers
