Puzzling Behavior
Given that my current position is in the space just to the left of any of the Z-0 entries,
X-0.4679 Y0.1841 Z-0.259 A-15.145 C12.53
X-0.6704 Y0.1719 Z-0.2771 A-15.395 C16.017
X-0.7994 Y0.1623 Z-0.2923 A-15.582 C18.188
X-1.0048 Y0.1442 Z-0.3225 A-15.924 C21.547
X-1.0627 Y0.1385 Z-0.3323 A-16.03 C22.473
X-1.2737 Y0.1152 Z-0.3725 A-16.452 C25.755
X-1.3232 Y0.1092 Z-0.383 A-16.559 C26.505
X-1.5384 Y0.0808 Z-0.4329 A-17.055 C29.67
X-1.7583 Y0.0477 Z-0.491 A-17.615 C32.744
And with the following,
With Selection.Find
.Text = "X-"
.Forward = False
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
why does Selection.Find.Found
Return False?
|