[mapguide-commits] r4207 - in trunk/Tools/Maestro: . Maestro

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Aug 31 12:56:17 EDT 2009


Author: ksgeograf
Date: 2009-08-31 12:56:17 -0400 (Mon, 31 Aug 2009)
New Revision: 4207

Modified:
   trunk/Tools/Maestro/Maestro/FormExpression.Designer.cs
   trunk/Tools/Maestro/Maestro/FormExpression.cs
   trunk/Tools/Maestro/UpdateVersionNumber.exe
Log:
Maestro: Fixed a minor iissue with the value lookup in the ExpressionEditor.

Modified: trunk/Tools/Maestro/Maestro/FormExpression.Designer.cs
===================================================================
--- trunk/Tools/Maestro/Maestro/FormExpression.Designer.cs	2009-08-30 16:22:35 UTC (rev 4206)
+++ trunk/Tools/Maestro/Maestro/FormExpression.Designer.cs	2009-08-31 16:56:17 UTC (rev 4207)
@@ -165,6 +165,7 @@
             // 
             this.ColumnValue.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
             this.ColumnValue.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+            this.ColumnValue.DropDownWidth = 180;
             this.ColumnValue.Enabled = false;
             this.ColumnValue.Name = "ColumnValue";
             this.ColumnValue.Size = new System.Drawing.Size(90, 25);
@@ -186,6 +187,7 @@
             // 
             this.ColumnName.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
             this.ColumnName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+            this.ColumnName.DropDownWidth = 180;
             this.ColumnName.Name = "ColumnName";
             this.ColumnName.Size = new System.Drawing.Size(90, 25);
             this.ColumnName.ToolTipText = "Select the column to read values from";
@@ -195,7 +197,7 @@
             // ExpressionText
             // 
             this.ExpressionText.Dock = System.Windows.Forms.DockStyle.Fill;
-            this.ExpressionText.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.ExpressionText.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
             this.ExpressionText.HideSelection = false;
             this.ExpressionText.Location = new System.Drawing.Point(0, 25);
             this.ExpressionText.Multiline = true;

Modified: trunk/Tools/Maestro/Maestro/FormExpression.cs
===================================================================
--- trunk/Tools/Maestro/Maestro/FormExpression.cs	2009-08-30 16:22:35 UTC (rev 4206)
+++ trunk/Tools/Maestro/Maestro/FormExpression.cs	2009-08-31 16:56:17 UTC (rev 4207)
@@ -728,9 +728,7 @@
         private void ColumnName_SelectedIndexChanged(object sender, EventArgs e)
         {
             ColumnValue.Enabled = false;
-
-            if (ColumnName.SelectedIndex < 0)
-                LookupValues.Enabled = ColumnName.SelectedIndex >= 0;
+            LookupValues.Enabled = ColumnName.SelectedIndex >= 0;
         }
 
         private void LookupValues_Click(object sender, EventArgs e)

Modified: trunk/Tools/Maestro/UpdateVersionNumber.exe
===================================================================
(Binary files differ)



More information about the mapguide-commits mailing list