Sub Handle_CreateProjectButton_Action
If Main.ProjectNameField.Text.Length = 0 Then
fx.Msgbox(MainForm, "I'm not detecting a name for your project. Please supply a name!", "No Name")
Else If Main.ProjectLocationField.Text.Length = 0 Then
fx.Msgbox(MainForm, "I'm not detecting a location for your project. Plase select a folder for your project by clicking the ""Open"" button.", "No Location")
Else If Main.CustomControlNameField.Text.Length = 0 Then
fx.Msgbox(MainForm, "I'm not detecting a name for the initial custom control module. Please supply a name for it!", "No Name")
Else
CreateProject
End If
End Sub