Index: /trunk/EventBenchConsole/rules/rules.xml
===================================================================
--- /trunk/EventBenchConsole/rules/rules.xml	(revision 34)
+++ /trunk/EventBenchConsole/rules/rules.xml	(revision 35)
@@ -28,4 +28,33 @@
 </rule>
 
+  <rule name="LeftClickListBox">
+    <msg type="&WM_LBUTTONDOWN;">
+      <equals>
+        <winInfoValue obj="this" winParam="class"/>
+        <constValue value="ListBox"/>
+      </equals>
+      <store var="clicked"/>
+    </msg>
+    <msg type="&WM_LBUTTONUP;">
+      <equals>
+        <paramValue obj="this" param="window.hwnd"/>
+        <paramValue obj="clicked" param="window.hwnd"/>
+      </equals>
+      <store var="up"/>
+    </msg>
+    <genMsg delay="1000">
+      <type>
+        <constValue value="&LB_SETCURSEL;"/>
+      </type>
+      <target>
+        <msgInfoValue obj="clicked" msgParam="target"/>
+      </target>
+      <WPARAM>
+        <paramValue obj="up" param="scrollPos"/>
+      </WPARAM>
+    </genMsg>
+  </rule>
+  
+
   <rule name="ComboBox">
     <msg type="&WM_LBUTTONDOWN;">
@@ -250,5 +279,5 @@
     </genMsgSeq>
   </rule>
-  
+
   <!-- if nothing else, at least switch focus, works only partially -->
   <rule name="LeftClickChangeFocus">
