Not sure if OpenLayers has this built in, but it seems fairly strait-forward to do this with just a few lines of javascript.  Just attach a javascript function to the &quot;featureadded&quot; event of your drawing vector layer to do something like this:<br>
<br>for(var f in vectorLayer.features) {<br>   if(polygon.geometry.intersects(f.geometry)) {<br>      selectFeatureControl.select(f);<br>   }<br>}<br><br><br><br><br><div class="gmail_quote">On Thu, Aug 11, 2011 at 3:42 PM, osullivj <span dir="ltr">&lt;<a href="mailto:jeremiahosullivan@gmail.com">jeremiahosullivan@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi,<br>
<br>
I am aware the select control can use a BBOX...does anyone know if it is<br>
possible to allow the user to draw a polygon to select all points within the<br>
polygon<br>
<br>
Thanks,<br>
Jerry<br>
<font color="#888888"><br>
--<br>
View this message in context: <a href="http://osgeo-org.1803224.n2.nabble.com/Polygon-Select-Tool-tp6677807p6677807.html" target="_blank">http://osgeo-org.1803224.n2.nabble.com/Polygon-Select-Tool-tp6677807p6677807.html</a><br>

Sent from the OpenLayers Users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.osgeo.org">Users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/openlayers-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/openlayers-users</a><br>
</font></blockquote></div><br>