[commit] r2023 - trunk/SDK/DotNet/CSharpComponentWizard

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Thu Aug 16 11:30:25 CDT 2012


Author: ksmyth
Date: Thu Aug 16 11:30:25 2012
New Revision: 2023

Log:
Edit copy

Modified:
   trunk/SDK/DotNet/CSharpComponentWizard/ErrorWindow.xaml
   trunk/SDK/DotNet/CSharpComponentWizard/MainWindow.xaml
   trunk/SDK/DotNet/CSharpComponentWizard/SolutionGenerator.cs

Modified: trunk/SDK/DotNet/CSharpComponentWizard/ErrorWindow.xaml
==============================================================================
--- trunk/SDK/DotNet/CSharpComponentWizard/ErrorWindow.xaml	Thu Aug 16 11:30:14 2012	(r2022)
+++ trunk/SDK/DotNet/CSharpComponentWizard/ErrorWindow.xaml	Thu Aug 16 11:30:25 2012	(r2023)
@@ -1,7 +1,7 @@
 <Window x:Class="CSharpComponentWizard.ErrorWindow"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
-        Title="Error occured!" Height="191" Width="421">
+        Title="Error occured" Height="191" Width="421">
     <Grid Background="#FFF2F2F2">
         <Label>The following error(s) occured:</Label>
         <ListBox Name="ErrorList" Height="89" HorizontalAlignment="Left" Margin="9,29,0,0" VerticalAlignment="Top" Width="387">

Modified: trunk/SDK/DotNet/CSharpComponentWizard/MainWindow.xaml
==============================================================================
--- trunk/SDK/DotNet/CSharpComponentWizard/MainWindow.xaml	Thu Aug 16 11:30:14 2012	(r2022)
+++ trunk/SDK/DotNet/CSharpComponentWizard/MainWindow.xaml	Thu Aug 16 11:30:25 2012	(r2023)
@@ -56,7 +56,7 @@
             <TabItem>
                 <Grid Background="{StaticResource TabBrush}">
                     <TextBlock Height="22" HorizontalAlignment="Left" Margin="16,26,0,0" VerticalAlignment="Top" TextWrapping="Wrap" Width="380" FontWeight="Bold" FontSize="13" FontFamily="Segoe UI">
-                        Welcome to the GME C# Component Wizard!
+                        Welcome to the GME C# Component Wizard.
                     </TextBlock>
 
                     <TextBlock Height="37" HorizontalAlignment="Left" Margin="16,50,0,0" VerticalAlignment="Top" TextWrapping="Wrap" Width="413" FontFamily="Segoe UI" FontSize="13">
@@ -70,7 +70,7 @@
                     </TextBlock>
 
                     <TextBlock Foreground="#FF9A9A9A" Height="17" Margin="26,226,0,0" TextWrapping="Wrap" VerticalAlignment="Top" FontFamily="Segoe UI" HorizontalAlignment="Left" Width="180">
-                        Please choose an existing folder!
+                        Please choose an existing folder.
                     </TextBlock>
                     <Label Content="Folder path:" FontFamily="Segoe UI" FontSize="13" Height="28" HorizontalAlignment="Left" Margin="21,173,0,0" Name="lbl_Path" VerticalAlignment="Top" />
                     <TextBox Height="23" Margin="25,199,0,0" Name="txb_TargetFolder" VerticalAlignment="Top" Background="White" TextChanged="txb_TargetFolder_TextChanged" HorizontalAlignment="Left" Width="194" />
@@ -139,7 +139,7 @@
             <TabItem>
                 <Grid Background="{StaticResource TabBrush}">
                     <TextBlock Height="22" HorizontalAlignment="Left" Margin="16,14,0,0" VerticalAlignment="Top" TextWrapping="Wrap" Width="380" FontWeight="Bold" FontSize="13" FontFamily="Segoe UI">
-                        Please choose your component type!
+                        Please choose your component type.
                     </TextBlock>
 
                     <TextBlock Height="37" HorizontalAlignment="Left" Margin="16,38,0,0" VerticalAlignment="Top" TextWrapping="Wrap" Width="429" FontFamily="Segoe UI" FontSize="13">

Modified: trunk/SDK/DotNet/CSharpComponentWizard/SolutionGenerator.cs
==============================================================================
--- trunk/SDK/DotNet/CSharpComponentWizard/SolutionGenerator.cs	Thu Aug 16 11:30:14 2012	(r2022)
+++ trunk/SDK/DotNet/CSharpComponentWizard/SolutionGenerator.cs	Thu Aug 16 11:30:25 2012	(r2023)
@@ -87,7 +87,7 @@
                 RegistryKey masterKey = Registry.CurrentUser.OpenSubKey(MainWindow.VS2010_REGISTRY_KEYPATH);
                 if (masterKey == null)
                 {
-                    throw new Exception("Cannot locate ProjectTemplate folder. Visual Studio 2010 is not installed!");
+                    throw new Exception("Cannot locate ProjectTemplate folder. Is Visual Studio 2010 installed?");
                 }
                 else
                 {
@@ -299,7 +299,7 @@
             RegistryKey masterKey = Registry.LocalMachine.OpenSubKey(MainWindow.MSSDK_REGISTRY_KEYPATH);
             if (masterKey == null)
             {
-                throw new Exception("Cannot locate sn.exe! VS2010 SDK is not installed!");
+                throw new Exception("Cannot locate sn.exe. Is VS2010 SDK installed?");
             }
             else
             {
@@ -366,7 +366,7 @@
             }
             catch (Exception)
             {
-                MessageBox.Show("Error occured: Cannot find the previously generated VS projectfile in the specified folder with the specified solutionname!");
+                MessageBox.Show("Error occured: Cannot find the previously generated VS projectfile in the specified folder with the specified solutionname.");
                 throw;
             }
             


More information about the gme-commit mailing list