﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Manifold Community Site: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350</link><description>Manifold Community Site thread</description><image><url>http://forum.manifold.net/forum/images/img-feedhead.png</url><title>Manifold Community Site: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350</link></image><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67351</link><description>&lt;P&gt;In my line of work, most novice users trying to find a map object (ie, a certain road or parcel) just want to be able to select a deisred layer, then type in some characters, and have the software return records containing those characters in any of the existing fields.  The user can then choose one or more of selected objects displayed in a table and zoom to the selected object(s).  This could be a good addition to the GoTo dialogue box or maybe the SQL query builder (promised in the next release) could include an &amp;quot;all fields&amp;quot; option.&lt;/P&gt;&lt;P&gt;In the meantime, I've been trying to script it and was hoping to get some help.  In the attached map file, I've created a form that allows the user to select the drawing layer, type in some search characters, and zoom to the selected object.  The zoom_to function works fine but I'm struggling on the search button.&lt;/P&gt;&lt;P&gt;Is there a scripting way to search all fields without actually listing them all in a query?  It would be great to create this tool so that it can be quickly used in any map project without a lot of setup hassle.&lt;/P&gt;&lt;p class='file'&gt;Attachments:&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/17/67351/form - wild card query.map'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/17/67351/form - wild card query.map'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;form - wild card query.map&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator>Mike Pelletier</dc:creator><comments>http://forum.manifold.net/forum/t67350#67351</comments><guid>http://forum.manifold.net/forum/t67350#67351</guid><pubDate>Mon, 30 Jun 2008 11:46:57 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67353</link><description>&lt;P&gt;I would really like that.&lt;/P&gt;</description><dc:creator>Ny-Mapper</dc:creator><comments>http://forum.manifold.net/forum/t67350#67353</comments><guid>http://forum.manifold.net/forum/t67350#67353</guid><pubDate>Mon, 30 Jun 2008 12:55:03 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67370</link><description>&lt;P&gt;I haven't figured out the question above, but please use the attached map file instead.  It runs except it uses a simple query on one field instead of all fields.  Also, I can't seem to make it delete the &amp;quot;temp&amp;quot; query.&lt;/P&gt;&lt;p class='file'&gt;Attachments:&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/2A/67370/form - wild card query.map'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/2A/67370/form - wild card query.map'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;form - wild card query.map&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator>Mike Pelletier</dc:creator><comments>http://forum.manifold.net/forum/t67350#67370</comments><guid>http://forum.manifold.net/forum/t67350#67370</guid><pubDate>Mon, 30 Jun 2008 16:26:43 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67372</link><description>&lt;P&gt;Mike,&lt;/P&gt;&lt;P&gt;One way of doing it (maybe not what you'd like) would be to create a query (ad hoc, within the script) that aggregated all the user columns into a single field, against IDs. Then run a second query like the one in your current script, to search on that aggregated field. &lt;/P&gt;</description><dc:creator>tjhb</dc:creator><comments>http://forum.manifold.net/forum/t67350#67372</comments><guid>http://forum.manifold.net/forum/t67350#67372</guid><pubDate>Mon, 30 Jun 2008 16:30:25 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67376</link><description>&lt;P&gt;That would definitely work Tim, but I&amp;quot;m thinking it would require writing all the fields out in the aggregating query, which might be a similar amount of work as writing them into the original query.  Maybe your idea could be made to work by aggregating the fields within the script such that it happens after the user selects the desired layer.  Then the query references the newly created field.&lt;/P&gt;&lt;P&gt;I recall an ArcIMS site that had a query that hit any field in the table.  I was just a user so couldn't see the code behind it though.  It made me think it was doable, although it may have been just a long query statement containing all the fields.&lt;/P&gt;</description><dc:creator>Mike Pelletier</dc:creator><comments>http://forum.manifold.net/forum/t67350#67376</comments><guid>http://forum.manifold.net/forum/t67350#67376</guid><pubDate>Mon, 30 Jun 2008 18:21:25 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67377</link><description>&lt;BLOCKQUOTE&gt;&lt;P&gt;Maybe your idea could be made to work by aggregating the fields within the script such that it happens after the user selects the desired layer. Then the query references the newly created field.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes that's it. The script would list all the field names into one string, use that string to write a query aggregating all their values into one field, then run a second query to search on the result. I could have a go later.&lt;/P&gt;</description><dc:creator>tjhb</dc:creator><comments>http://forum.manifold.net/forum/t67350#67377</comments><guid>http://forum.manifold.net/forum/t67350#67377</guid><pubDate>Mon, 30 Jun 2008 19:01:25 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67389</link><description>&lt;P&gt;I've changed as little as possible Mike. It works but needs a lot of refinement.&lt;/P&gt;&lt;p class='file'&gt;Attachments:&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/3D/67389/Form Script.txt'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/3D/67389/Form Script.txt'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;Form Script.txt&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator>tjhb</dc:creator><comments>http://forum.manifold.net/forum/t67350#67389</comments><guid>http://forum.manifold.net/forum/t67350#67389</guid><pubDate>Tue, 01 Jul 2008 02:03:06 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67426</link><description>&lt;P&gt;Tim, &lt;/P&gt;&lt;P&gt;That's absolutely fantastic!  It seems to work flawlessly on a variety of column types and it laughs at it being lower or upper case.  It even works within just several seconds on our relatively large parcel layer (18600 rec, 55 cols).  Thank you very much.&lt;/P&gt;&lt;P&gt;Attached is a cleaned up working version.  There is one issue unless you adjust the form screen location, either manually or by adjusting its initial location (main form object - properties).  When you click on a message box to close it, the click will hit one of the underlying command buttons on the form.&lt;/P&gt;&lt;P&gt;A very handy tool for when running in 32-bit. &lt;/P&gt;&lt;p class='file'&gt;Attachments:&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/62/67426/All Query.map'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/62/67426/All Query.map'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;All Query.map&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator>Mike Pelletier</dc:creator><comments>http://forum.manifold.net/forum/t67350#67426</comments><guid>http://forum.manifold.net/forum/t67350#67426</guid><pubDate>Tue, 01 Jul 2008 10:13:06 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67429</link><description>&lt;P&gt;Yes this project was a really good idea Mike.&lt;/P&gt;</description><dc:creator>tjhb</dc:creator><comments>http://forum.manifold.net/forum/t67350#67429</comments><guid>http://forum.manifold.net/forum/t67350#67429</guid><pubDate>Tue, 01 Jul 2008 10:58:31 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67436</link><description>&lt;P&gt;Great tool, except that you have hardcoded the layers in the dropdown. This stumped me for a while. &lt;/P&gt;&lt;P&gt;BTW thanks Mike for your forms posts recently. Inspired by your work, I had a go at modifying some existing tools to use a form as a front end and I am really glad that I did ... much more flexible thanks for that &lt;IMG SRC='http://69.17.46.171/forum/images/emo-grin.gif'&gt;&lt;/P&gt;</description><dc:creator>danb</dc:creator><comments>http://forum.manifold.net/forum/t67350#67436</comments><guid>http://forum.manifold.net/forum/t67350#67436</guid><pubDate>Tue, 01 Jul 2008 13:47:52 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67437</link><description>&lt;P&gt;Very nice tool.  I took the liberty of changing the first bit of code to allow for the tool to build a list of all Drawing components.  Dropped it into one of my projects and it worked like a charm.  The next idea I have is to perhaps build a Map component with the selected drawing (to allow the Zoom to work even if there isn't a Map called &amp;quot;Map&amp;quot;. &lt;/P&gt;&lt;P&gt;FWIW&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;p class='file'&gt;Attachments:&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/6D/67437/All Query with built list.map'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/6D/67437/All Query with built list.map'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;All Query with built list.map&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator>jnorman</dc:creator><comments>http://forum.manifold.net/forum/t67350#67437</comments><guid>http://forum.manifold.net/forum/t67350#67437</guid><pubDate>Tue, 01 Jul 2008 13:48:24 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67448</link><description>&lt;P&gt;Thanks for that improvement John.  I was hoping folks would want make it better, especially since programming takes me a long time. &lt;/P&gt;&lt;P&gt;Some other thoughts for improvements are:&lt;/P&gt;&lt;P&gt;1.  Have the table just display the selected records.  That would save a click on the selection filter.&lt;/P&gt;&lt;P&gt;2.  Have it zoom to a size a bit larger than the object and a minimum size for points. &lt;/P&gt;&lt;P&gt;This forum is sooo great!&lt;/P&gt;</description><dc:creator>Mike Pelletier</dc:creator><comments>http://forum.manifold.net/forum/t67350#67448</comments><guid>http://forum.manifold.net/forum/t67350#67448</guid><pubDate>Tue, 01 Jul 2008 16:54:14 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67679</link><description>&lt;P&gt;Mike, Tim, and John,&lt;/P&gt;&lt;P&gt;Thanks for all your work on this!&lt;IMG SRC='http://forum.manifold.net/forum/images/emo-grin.gif'&gt;&lt;/P&gt;&lt;P&gt;Great little tool to implement for the user who needs things as simple as possible.&lt;/P&gt;</description><dc:creator>rfriedman</dc:creator><comments>http://forum.manifold.net/forum/t67350#67679</comments><guid>http://forum.manifold.net/forum/t67350#67679</guid><pubDate>Thu, 03 Jul 2008 09:08:14 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67684</link><description>&lt;P&gt;Ok,&lt;/P&gt;&lt;P&gt;I've played around a bit more and have been able to do a couple of things.  I have to admit that I'm always humbled to see what Tim can do with SQL.  Mike what a great idea! &lt;/P&gt;&lt;P&gt;I changed the code (hopefully didn't break it) to...&lt;/P&gt;&lt;P&gt;1) Allow for the selection of any map as a starting point.  The layers are then populated from that map.&lt;/P&gt;&lt;P&gt;Note -- as part of this, I edited the code section where Q1 is being built such that it doesn't eliminate columns that are not native.  See below.  This allows linked drawings to work as well.&lt;/P&gt;&lt;P class='code'&gt;code&amp;#160;//VBScript&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=k&gt;For&lt;/span&gt;&amp;#160;&lt;span class=k&gt;Each&lt;/span&gt;&amp;#160;col&amp;#160;&lt;span class=k&gt;In&lt;/span&gt;&amp;#160;table.ColumnSet&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=c&gt;'&amp;#160;Commented&amp;#160;out&amp;#160;the&amp;#160;col.IsNative&amp;#160;and&amp;#160;this&amp;#160;seems&amp;#160;to&amp;#160;work&amp;#160;with&amp;#160;linked&amp;#160;drawings&amp;#160;&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=k&gt;If&lt;/span&gt;&amp;#160;&lt;span class=k&gt;Not&lt;/span&gt;&amp;#160;col.IsIntrinsic&amp;#160;&lt;span class=k&gt;and&lt;/span&gt;&amp;#160;&lt;span class=k&gt;Not&lt;/span&gt;&amp;#160;col.Identity&amp;#160;&lt;span class=k&gt;then&lt;/span&gt;&amp;#160;&lt;span class=c&gt;'And&amp;#160;col.IsNative&amp;#160;Then&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=k&gt;If&lt;/span&gt;&amp;#160;cols&amp;#160;&amp;lt;&amp;gt;&amp;#160;&lt;span class=s&gt;&amp;quot;&amp;quot;&lt;/span&gt;&amp;#160;&lt;span class=k&gt;Then&lt;/span&gt;&amp;#160;cols&amp;#160;=&amp;#160;cols&amp;#160;&amp;amp;&amp;#160;&lt;span class=s&gt;&amp;quot;&amp;#160;&amp;amp;&amp;#160;&amp;quot;&lt;/span&gt;&amp;#160;&amp;amp;&amp;#160;Chr(34)&amp;#160;&amp;amp;&amp;#160;&lt;span class=s&gt;&amp;quot;&amp;#160;&amp;quot;&lt;/span&gt;&amp;#160;&amp;amp;&amp;#160;Chr(34)&amp;#160;&amp;amp;&amp;#160;&lt;span class=s&gt;&amp;quot;&amp;#160;&amp;amp;&amp;#160;&amp;quot;&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;cols&amp;#160;=&amp;#160;cols&amp;#160;&amp;amp;&amp;#160;&lt;span class=s&gt;&amp;quot;CStr([&amp;quot;&lt;/span&gt;&amp;#160;&amp;amp;&amp;#160;col.Name&amp;#160;&amp;amp;&amp;#160;&lt;span class=s&gt;&amp;quot;])&amp;quot;&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=k&gt;End&lt;/span&gt;&amp;#160;&lt;span class=k&gt;If&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=k&gt;Next&lt;/span&gt;&amp;#160;&lt;span class=c&gt;'&amp;#160;col&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2) I added a zoom to multiplier which defaults to 1.2 x the normal zoomed to scale.&lt;/P&gt;&lt;P&gt;I couldn't figure out how to script the display of only the selected records.  I imagine UI scripting could take care of this...maybe over the weekend :)&lt;/P&gt;&lt;P&gt;Because I use Themes A LOT, I would love to be able to make this work with themes as well.  At this point, it only works with actual Drawing components.&lt;/P&gt;&lt;P&gt;Anyway -- this has been a fun exercise!&lt;/P&gt;&lt;P&gt;Cheers and have a great 4th! if you celebrate it.&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;p class='file'&gt;Attachments:&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/64/67684/All Query Any Map.map'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/64/67684/All Query Any Map.map'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;All Query Any Map.map&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator>jnorman</dc:creator><comments>http://forum.manifold.net/forum/t67350#67684</comments><guid>http://forum.manifold.net/forum/t67350#67684</guid><pubDate>Thu, 03 Jul 2008 09:25:31 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67687</link><description>&lt;P&gt;Very nice John for making it ever more useful.  At some point, I'm thinking this might be a good project for converting to VB.Net so that it will work in 64-bit and as a way to gain an understanding of how to use Visual Studio with Manifold.  This might be asking to broad a question but does anyone have pointers or basic concept on how to do convert this to VB.Net in Visual Studio? &lt;/P&gt;</description><dc:creator>Mike Pelletier</dc:creator><comments>http://forum.manifold.net/forum/t67350#67687</comments><guid>http://forum.manifold.net/forum/t67350#67687</guid><pubDate>Thu, 03 Jul 2008 09:56:23 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67688</link><description>&lt;P&gt;I just saw your other thread on the subject of converting to VB.Net.  I'm going to need to make this leap as well, and would love those pointers on using Visual Studio.   I like your idea of converting this simple project as a good way to get started. &lt;IMG SRC='images/emo-smile.gif'&gt;&lt;/P&gt;</description><dc:creator>jnorman</dc:creator><comments>http://forum.manifold.net/forum/t67350#67688</comments><guid>http://forum.manifold.net/forum/t67350#67688</guid><pubDate>Thu, 03 Jul 2008 10:01:30 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67716</link><description>&lt;P&gt;The only suggestion I have is to have a look at the examples that Lorne has built.  Most of the threads that contain the source are referenced on &lt;A HREF='http://www.manipedia.eu/'&gt;http://www.manipedia.eu/&lt;/A&gt; under Add-ins.  I used one of these with the first add-in I built, it was a God send to see how the events behaved.&lt;/P&gt;&lt;P&gt;As for the code, I have not found an easy way to convert vbscript into vb.net, so you probably have to recode it.&lt;/P&gt;&lt;P&gt;James K.&lt;/P&gt;</description><dc:creator>jkelly</dc:creator><comments>http://forum.manifold.net/forum/t67350#67716</comments><guid>http://forum.manifold.net/forum/t67350#67716</guid><pubDate>Thu, 03 Jul 2008 15:52:15 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67753</link><description>&lt;P&gt;Here's a stab at converting this useful utility to a VB.NET Windows Forms application.  I'm not sure if I am merging VS code in an efficient way but it does seem to work. Since people are still brain-storming features, I have just moved the code to a GUI .Net script. However, at some point, a utility like this should get moved to an add-in pane since it would then be available in any project. Very little testing done so I probably introduced errors &lt;IMG SRC='http://forum.manifold.net/forum/images/emo-wink.gif'&gt;&lt;/P&gt;&lt;p class='file'&gt;Attachments:&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/A9/67753/vbNET_Script.txt'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/A9/67753/vbNET_Script.txt'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;vbNET_Script.txt&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator>Lorne</dc:creator><comments>http://forum.manifold.net/forum/t67350#67753</comments><guid>http://forum.manifold.net/forum/t67350#67753</guid><pubDate>Fri, 04 Jul 2008 06:14:47 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67754</link><description>&lt;P&gt;Gosh, this is a learning experience. (The external version looks even more daunting than I'd've thunk, no fault on Lorne's part of course just my ignorance.)&lt;/P&gt;&lt;P&gt;It's a while since we had so many hands collaborate on one bit of code. It gets better and better. What a nice bunch of people.&lt;/P&gt;</description><dc:creator>tjhb</dc:creator><comments>http://forum.manifold.net/forum/t67350#67754</comments><guid>http://forum.manifold.net/forum/t67350#67754</guid><pubDate>Fri, 04 Jul 2008 07:02:03 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67755</link><description>&lt;P&gt;I just write amateur code Tim and I would really like others to clean it up. Mostly, I approach this stuff by banging away until it works.&lt;/P&gt;&lt;P&gt;It is the Form/Controls definitions that makes it all look hard - Public Sub New().  You don't see that in an add-in DLL although it is there, hidden in the background.  On the up-side, you do not have to create that code by hand.  Just design the Form in VS then open &amp;quot;Form1.Designer.vb&amp;quot; and copy the applicable code. The actual application code can be done in VS as well which makes it easier - IntelliSense is great when working with multi-level object properties!  The application code is very similar to vbScript versions.  Option Explicit is turned on and all variables have to be fully dimensioned which adds a bit of length but, otherwise, much the same.&lt;/P&gt;</description><dc:creator>Lorne</dc:creator><comments>http://forum.manifold.net/forum/t67350#67755</comments><guid>http://forum.manifold.net/forum/t67350#67755</guid><pubDate>Fri, 04 Jul 2008 07:31:28 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67756</link><description>&lt;P&gt;(Me too.) Yes the definitions subroutine was a major part of it Lorne and it seems less daunting after your explanation thank you.&lt;/P&gt;&lt;P&gt;But similarly e.g. the fourth line below:&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;If&lt;/span&gt;&amp;#160;Context.Document.ComponentSet.ItemByName(&lt;span class=s&gt;&amp;quot;Q1&amp;quot;&lt;/span&gt;)&amp;#160;&amp;lt;&amp;#160;0&amp;#160;&lt;span class=k&gt;Then&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Qry1&amp;#160;=&amp;#160;Context.Document.NewQuery(&lt;span class=s&gt;&amp;quot;Q1&amp;quot;&lt;/span&gt;)&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;Else&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Qry1&amp;#160;=&amp;#160;CType(Context.Document.ComponentSet.Item(&lt;span class=s&gt;&amp;quot;Q1&amp;quot;&lt;/span&gt;),&amp;#160;Manifold.Interop.Query)&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;End&lt;/span&gt;&amp;#160;&lt;span class=k&gt;If&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Why can't the engine just see what type the item is, and what type Qry1 is (from its declaration), and tacitly assent to the match? I suppose because fussiness like this snags some errors at compile time, that would otherwise be revealed only at runtime. Programming for grownups.&lt;/P&gt;</description><dc:creator>tjhb</dc:creator><comments>http://forum.manifold.net/forum/t67350#67756</comments><guid>http://forum.manifold.net/forum/t67350#67756</guid><pubDate>Fri, 04 Jul 2008 08:17:17 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67757</link><description>&lt;BLOCKQUOTE&gt;&lt;P&gt;Why can't the engine just see what type the item is&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Well, it sees a type on the left side. It's &amp;quot;Manifold.Interop.Component&amp;quot;, a super type (probably not the correct term) that allows to access all those properties common to all component types like Name or Type. The expicit cast to  query in line 4 is only to help the compiler and make intellisense show all properties and not only the superset. If there is a component &amp;quot;Q1&amp;quot; of an other type you'll get a runtime error. You could (and probably should) check the component.Type before you cast and try to call a method Drawing.RunEx()&lt;/P&gt;</description><dc:creator>KlausDE</dc:creator><comments>http://forum.manifold.net/forum/t67350#67757</comments><guid>http://forum.manifold.net/forum/t67350#67757</guid><pubDate>Fri, 04 Jul 2008 08:38:31 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67758</link><description>&lt;P&gt;The correct term is &amp;quot;base type&amp;quot;. Component is a base type of Query. Query is a derived type of Component.&lt;/P&gt;&lt;P&gt;If the right part of the assignment to a variable of type Query is not a Query, the assignment will generate an error by throwing an exception. You could catch and handle that exception, but generally it is better to make sure that the component at hand is a Query by checking its Type or TypeName property.&lt;/P&gt;</description><dc:creator>adamw</dc:creator><comments>http://forum.manifold.net/forum/t67350#67758</comments><guid>http://forum.manifold.net/forum/t67350#67758</guid><pubDate>Fri, 04 Jul 2008 08:53:44 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67766</link><description>&lt;P&gt;Thanks all&lt;/P&gt;&lt;P&gt;I think this is just an example of carrying old ideas forward by copy/paste &lt;IMG SRC='http://forum.manifold.net/forum/images/emo-blink.gif'&gt; I began using that code construct in my early days of vbScript.  I was always experimenting with forum code snippets that created temporary queries but did not delete them (exactName=False).  Queries kept building up in the project as you ran the script.  Another situation where deletion does not occur is with run-time errors (oops, I get lots of those) that prevent the code from completing and never gets to the query deletion code.  This is mostly in the developing stage but, again, the query is left in the project.  Using an obscure name like &amp;quot;__Query__1&amp;quot; would minimize the risk of having a non-query component with such a name.&lt;/P&gt;&lt;P&gt;So maybe something like:&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=c&gt;'VB&amp;#160;.NET&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;Dim&lt;/span&gt;&amp;#160;Qry1&amp;#160;&lt;span class=k&gt;As&lt;/span&gt;&amp;#160;Manifold.Interop.Query&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;If&lt;/span&gt;&amp;#160;Context.Document.ComponentSet.ItemByName(&lt;span class=s&gt;&amp;quot;__Query__1&amp;quot;&lt;/span&gt;)&amp;#160;&amp;lt;&amp;#160;0&amp;#160;&lt;span class=k&gt;Then&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=c&gt;'&amp;#160;Create&amp;#160;a&amp;#160;new&amp;#160;query&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Qry1&amp;#160;=&amp;#160;Context.Document.NewQuery(&lt;span class=s&gt;&amp;quot;__Query__1&amp;quot;&lt;/span&gt;)&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;ElseIf&lt;/span&gt;&amp;#160;Context.Document.ComponentSet.Item(&lt;span class=s&gt;&amp;quot;__Query__1&amp;quot;&lt;/span&gt;).Type&amp;#160;=&amp;#160;_&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;Manifold.Interop.ComponentType.ComponentQuery&amp;#160;&lt;span class=k&gt;Then&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=c&gt;'&amp;#160;Use&amp;#160;the&amp;#160;old&amp;#160;Query&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Qry1&amp;#160;=&amp;#160;Context.Document.ComponentSet.Item(&lt;span class=s&gt;&amp;quot;__Query__1&amp;quot;&lt;/span&gt;)&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;Else&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=c&gt;'&amp;#160;Flag&amp;#160;an&amp;#160;error&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;MessageBox.Show(&amp;#160;_&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;text:=&lt;span class=s&gt;&amp;quot;__Query__1&amp;#160;exists&amp;#160;in&amp;#160;the&amp;#160;project&amp;#160;but&amp;#160;is&amp;#160;not&amp;#160;a&amp;#160;Query&amp;#160;Component.&amp;quot;&lt;/span&gt;,&amp;#160;_&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;caption:=&lt;span class=s&gt;&amp;quot;Error&amp;quot;&lt;/span&gt;,&amp;#160;_&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;buttons:=System.Windows.Forms.MessageBoxButtons.OK,&amp;#160;_&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;icon:=System.Windows.Forms.MessageBoxIcon.Information)&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=k&gt;Exit&lt;/span&gt;&amp;#160;&lt;span class=k&gt;Sub&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;End&lt;/span&gt;&amp;#160;&lt;span class=k&gt;If&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Perhaps the simplest way of handling this in a .NET application would be to use exactName=False when creating a Query which would always create a new Query but allow Manifold to change the name to prevent conflicts.  Use a Finally statement in the error routines to delete the temporary query.   This would get rid of it even if a run-time error prevented completion of the main subroutine/function code.&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=c&gt;'VB&amp;#160;.NET&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;Dim&lt;/span&gt;&amp;#160;Qry1&amp;#160;&lt;span class=k&gt;As&lt;/span&gt;&amp;#160;Manifold.Interop.Query&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;Try&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=c&gt;'&amp;#160;...&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Qry1&amp;#160;=&amp;#160;Context.Document.NewQuery(&lt;span class=s&gt;&amp;quot;Q1&amp;quot;&lt;/span&gt;,&amp;#160;&lt;span class=k&gt;False&lt;/span&gt;)&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;Catch&lt;/span&gt;&amp;#160;ex&amp;#160;&lt;span class=k&gt;As&lt;/span&gt;&amp;#160;Exception&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=c&gt;'&amp;#160;Error&amp;#160;message&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;Finally&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=k&gt;If&lt;/span&gt;&amp;#160;Context.Document.ComponentSet.ItemByName(Qry1.Name)&amp;#160;&amp;gt;=&amp;#160;0&amp;#160;&lt;span class=k&gt;Then&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Context.Document.ComponentSet.Remove(Qry1)&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=k&gt;End&lt;/span&gt;&amp;#160;&lt;span class=k&gt;If&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;End&lt;/span&gt;&amp;#160;&lt;span class=k&gt;Try&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Better ideas very much welcomed!&lt;/P&gt;</description><dc:creator>Lorne</dc:creator><comments>http://forum.manifold.net/forum/t67350#67766</comments><guid>http://forum.manifold.net/forum/t67350#67766</guid><pubDate>Fri, 04 Jul 2008 13:02:12 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67770</link><description>&lt;P&gt;Wow -- just stole away from the 4th of July festivities at home.  Looks like I'll have some catching up to do when I get some more time &lt;IMG SRC='images/emo-grin.gif'&gt;.&lt;/P&gt;&lt;P&gt;This is really cool to see the collaboration.  Neat little tool and a learning experience to boot.  I am certainly a trial and error programmer, but these exercises make it worth the effort.  Now that it's in the .NET realm, I think I'll be spending time learning before contributing much more -- looking forward to it. &lt;/P&gt;&lt;P&gt;I like what I see -- &lt;IMG SRC='images/emo-cool.gif'&gt;&lt;/P&gt;</description><dc:creator>jnorman</dc:creator><comments>http://forum.manifold.net/forum/t67350#67770</comments><guid>http://forum.manifold.net/forum/t67350#67770</guid><pubDate>Fri, 04 Jul 2008 16:02:26 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67784</link><description>&lt;P&gt;There is an issue with the Try ... Finally code above. If the call to NewQuery(...) throws an exception the code in Finally tries to access Qry1.Name. This will throw another exception since Qry1 has not been initialized.&lt;/P&gt;&lt;P&gt;It would be better to use:&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=c&gt;'VB.NET&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;Try&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&lt;span class=c&gt;'...&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&lt;span class=k&gt;Dim&lt;/span&gt;&amp;#160;Qry1&amp;#160;&lt;span class=k&gt;As&lt;/span&gt;&amp;#160;Manifold.Interop.Query&amp;#160;&lt;span class=c&gt;'&amp;#160;no&amp;#160;use&amp;#160;to&amp;#160;have&amp;#160;Qry1&amp;#160;visible&amp;#160;outside&amp;#160;Try&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;Qry1&amp;#160;=&amp;#160;Context.Document.NewQuery(&lt;span class=s&gt;&amp;quot;Q1&amp;quot;&lt;/span&gt;,&amp;#160;&lt;span class=k&gt;False&lt;/span&gt;)&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&lt;span class=k&gt;Try&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&lt;span class=c&gt;'...&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&lt;span class=k&gt;Finally&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;Context.Document.ComponentSet.Remove(Qry1)&amp;#160;&lt;span class=c&gt;'&amp;#160;no&amp;#160;need&amp;#160;to&amp;#160;search&amp;#160;by&amp;#160;name&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&lt;span class=k&gt;End&lt;/span&gt;&amp;#160;&lt;span class=k&gt;Try&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;Catch&lt;/span&gt;&amp;#160;ex&amp;#160;&lt;span class=k&gt;As&lt;/span&gt;&amp;#160;Exception&lt;/P&gt;&lt;P class='code'&gt;&amp;#160;&amp;#160;&lt;span class=c&gt;'&amp;#160;...&amp;#160;couldn't&amp;#160;create&amp;#160;Q1&lt;/span&gt;&lt;/P&gt;&lt;P class='code'&gt;&lt;span class=k&gt;End&lt;/span&gt;&amp;#160;&lt;span class=k&gt;Try&lt;/span&gt;&lt;/P&gt;</description><dc:creator>adamw</dc:creator><comments>http://forum.manifold.net/forum/t67350#67784</comments><guid>http://forum.manifold.net/forum/t67350#67784</guid><pubDate>Sat, 05 Jul 2008 03:23:14 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#67788</link><description>&lt;P&gt;Thank you Adam!&lt;/P&gt;</description><dc:creator>Lorne</dc:creator><comments>http://forum.manifold.net/forum/t67350#67788</comments><guid>http://forum.manifold.net/forum/t67350#67788</guid><pubDate>Sat, 05 Jul 2008 04:00:40 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#68293</link><description>&lt;P&gt;Thanks for this wonderful tool because this what I need for my project &lt;IMG SRC='images/emo-smile.gif'&gt;. Apparently, when I open it to Manifold v. 6 an error occurs. It says that the file version is not supported. What Manifold version did you use?&lt;/P&gt;</description><dc:creator>Juanito</dc:creator><comments>http://forum.manifold.net/forum/t67350#68293</comments><guid>http://forum.manifold.net/forum/t67350#68293</guid><pubDate>Mon, 14 Jul 2008 00:01:57 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#68296</link><description>&lt;P&gt;new map format is not compatible with all last new manifold system version. this force you to have the last version to better debug, feedback , feature (wish) of manifold Team and avoid waste time (manage old version). The only way to do that is export using last version manifold system each file inside the map then re import all file one by one .Which versionS numberS have you got ? A script could be implemented to do that easely instead using mouse/gui .&lt;/P&gt;&lt;p class='file'&gt;Attachments:&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/C8/68296/all_any_map.zip'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/C8/68296/all_any_map.zip'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;all_any_map.zip&lt;/span&gt;&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/C8/68296/all_any_map1.zip'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/C8/68296/all_any_map1.zip'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;all_any_map1.zip&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator>lionel_</dc:creator><comments>http://forum.manifold.net/forum/t67350#68296</comments><guid>http://forum.manifold.net/forum/t67350#68296</guid><pubDate>Mon, 14 Jul 2008 02:16:01 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#68342</link><description>&lt;P&gt;Thanks lionel for a quick response. Currently, we are using Manifold System 6.50 Enterprise Edition.&lt;/P&gt;</description><dc:creator>Juanito</dc:creator><comments>http://forum.manifold.net/forum/t67350#68342</comments><guid>http://forum.manifold.net/forum/t67350#68342</guid><pubDate>Mon, 14 Jul 2008 17:30:46 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#68343</link><description>&lt;P&gt;I already downloaded and imported the files that you uploaded. What is the name of Choose Map textbox, Choose Layer textbox, Search for textbox and ZoomTo Multiplier textbox. Sorry coz I am a newbie in using a script. :-)&lt;/P&gt;</description><dc:creator>Juanito</dc:creator><comments>http://forum.manifold.net/forum/t67350#68343</comments><guid>http://forum.manifold.net/forum/t67350#68343</guid><pubDate>Mon, 14 Jul 2008 18:27:18 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#68494</link><description>&lt;P&gt;I have been playing around with an add-in pane for this project.  Lots of little problems but I discovered a few things as well.  The code (SearchAllColumns.vb) is full of comments. It would be great if others would enhance the code.  Sure to be lots of errors.&lt;/P&gt;&lt;p class='file'&gt;Attachments:&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/8E/68494/SearchAllColumns_DLL_XML.Zip'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/8E/68494/SearchAllColumns_DLL_XML.Zip'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;SearchAllColumns_DLL_XML.Zip&lt;/span&gt;&lt;br&gt;&lt;a href='http://forum.manifold.net/Attachments/8E/68494/SearchAllColumns_VSproject.zip'&gt;&lt;img src='images/dwn-http.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;a href='ftp://forum.manifold.net/attachments/8E/68494/SearchAllColumns_VSproject.zip'&gt;&lt;img src='images/dwn-ftp.gif' align='absmiddle'&gt;&lt;/a&gt;&lt;span&gt;SearchAllColumns_VSproject.zip&lt;/span&gt;&lt;br&gt;&lt;/p&gt;</description><dc:creator>Lorne</dc:creator><comments>http://forum.manifold.net/forum/t67350#68494</comments><guid>http://forum.manifold.net/forum/t67350#68494</guid><pubDate>Fri, 18 Jul 2008 09:21:49 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#69403</link><description>&lt;P&gt;Lorne, just found your addition to this thread.  The add-in is a wonderful improvement with very nice look and feel.  It works great in both 32 and 64 bit.  The ability to dock it like other panes is just great.&lt;/P&gt;&lt;P&gt;Hope to find some time to check it out in Visual Studio as well.  Thanks for taking this so far &lt;IMG SRC='http://69.17.46.171/forum/images/emo-grin.gif'&gt; &lt;/P&gt;&lt;P&gt;Converting the form to a dll also would seem to be great for data entry forms since the docking option is very nice.&lt;/P&gt;</description><dc:creator>Mike Pelletier</dc:creator><comments>http://forum.manifold.net/forum/t67350#69403</comments><guid>http://forum.manifold.net/forum/t67350#69403</guid><pubDate>Fri, 08 Aug 2008 11:01:31 GMT</pubDate></item><item><title>RE: Tool to search any field and zoom to selection</title><link>http://forum.manifold.net/forum/t67350#69425</link><description>&lt;P&gt;Thanks Mike.  Appreciate the comments.&lt;/P&gt;</description><dc:creator>Lorne</dc:creator><comments>http://forum.manifold.net/forum/t67350#69425</comments><guid>http://forum.manifold.net/forum/t67350#69425</guid><pubDate>Fri, 08 Aug 2008 15:44:57 GMT</pubDate></item></channel></rss>