Index: trunk/src/scriptbuilder/gui/IncidentPaletteFrame.java
===================================================================
--- trunk/src/scriptbuilder/gui/IncidentPaletteFrame.java	(revision 127)
+++ trunk/src/scriptbuilder/gui/IncidentPaletteFrame.java	(revision 128)
@@ -7,4 +7,6 @@
 
 import java.awt.GridLayout;
+import java.awt.event.KeyEvent;
+import java.awt.event.KeyListener;
 import java.io.File;
 import java.io.FileFilter;
@@ -31,10 +33,10 @@
 public class IncidentPaletteFrame extends javax.swing.JFrame
 {
-    
+
     private String incDir;
 
     private SimulationScript script;
 
-    private ScriptBuilderFrame parent;
+    private final ScriptBuilderFrame parent;
 
     private SimulationScript dummyScript;
@@ -69,5 +71,35 @@
         initComponents();
 
-        String propfilename = "/scriptbuilder/gui/application.properties";
+        txtSearchFilter.addKeyListener(new KeyListener()
+        {
+
+            @Override
+            public void keyTyped(KeyEvent e)
+            {
+            }
+
+            @Override
+            public void keyPressed(KeyEvent e)
+            {
+                if (e.getKeyCode() == KeyEvent.VK_ENTER)
+                {
+                    /*This feature has not yet been implemented. Show a message and just return.*/
+                    if (true)
+                    {
+                        JOptionPane.showMessageDialog(txtSearchFilter.getTopLevelAncestor(), "This feature has not yet been implemented.\n",
+                                "Feature not implemented", JOptionPane.INFORMATION_MESSAGE);
+                    }
+                }
+            }
+
+            @Override
+            public void keyReleased(KeyEvent e)
+            {
+            }
+        });
+
+        String fs = System.getProperty("file.separator");
+
+        String propfilename = fs + "scriptbuilder" + fs + "gui" + fs + "application.properties";
         String propKey = "Incidents.directory";
         incDir = "";
@@ -108,14 +140,14 @@
         if (!folder.exists())
         {
-            JOptionPane.showMessageDialog(this, 
+            JOptionPane.showMessageDialog(this,
                     "Unable to locate folder of existing incidents.\n"
-                  + "Folder \""+incDir+"\" should have been included in the\n"
-                  + "ScriptBuilder.zip file you downloaded.\n"
-                  + "TO FIX: Close the ScriptBuilder program and run it from\n"
-                  + "the same directory where you opened the .zip file.\n\n"
-                  + "(If the problem persists, contact the developers.)", "Missing Folder: \""+incDir+"\"", JOptionPane.ERROR_MESSAGE);
+                    + "Folder \"" + incDir + "\" should have been included in the\n"
+                    + "ScriptBuilder.zip file you downloaded.\n"
+                    + "TO FIX: Close the ScriptBuilder program and run it from\n"
+                    + "the same directory where you opened the .zip file.\n\n"
+                    + "(If the problem persists, contact the developers.)", "Missing Folder: \"" + incDir + "\"", JOptionPane.ERROR_MESSAGE);
             return newList;
         }
-        
+
         incidentFiles = folder.listFiles();
 
