From 6cd55f11facf81a50721c3ef666e2d8ed326fa38 Mon Sep 17 00:00:00 2001 From: Daniel Harrod Date: Wed, 26 Jun 2024 22:24:38 -0500 Subject: [PATCH] Better instructions for the Goto Picker. --- AppTestStudio/frmTreePicker.Designer.cs | 6 +++--- AppTestStudio/frmTreePicker.resx | 7 +++++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/AppTestStudio/frmTreePicker.Designer.cs b/AppTestStudio/frmTreePicker.Designer.cs index 29bcfd6..a40f46d 100644 --- a/AppTestStudio/frmTreePicker.Designer.cs +++ b/AppTestStudio/frmTreePicker.Designer.cs @@ -29,6 +29,7 @@ protected override void Dispose(bool disposing) /// private void InitializeComponent() { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTreePicker)); this.treeView1 = new System.Windows.Forms.TreeView(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdAccept = new System.Windows.Forms.Button(); @@ -100,10 +101,9 @@ private void InitializeComponent() // this.label3.Location = new System.Drawing.Point(438, 54); this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(280, 50); + this.label3.Size = new System.Drawing.Size(280, 107); this.label3.TabIndex = 6; - this.label3.Text = "Information: This will search for the first occurrance of each not listed, if it " + - "finds a node then it follows that node down the tree."; + this.label3.Text = resources.GetString("label3.Text"); // // frmTreePicker // diff --git a/AppTestStudio/frmTreePicker.resx b/AppTestStudio/frmTreePicker.resx index 1af7de1..d5b23c3 100644 --- a/AppTestStudio/frmTreePicker.resx +++ b/AppTestStudio/frmTreePicker.resx @@ -117,4 +117,11 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + Information: At runtime, this will search one section at a time for the node listed and pick the first instance it finds. Recommended that you use unique names on each node so that this will pick the node you need. + +If the node is not found all nodes in that section will be ignored due to attempting to match on something that does not exist. + + + \ No newline at end of file