diff --git a/instat/instat.vbproj b/instat/instat.vbproj
index c6551b19986..c3d0ef407ec 100644
--- a/instat/instat.vbproj
+++ b/instat/instat.vbproj
@@ -642,6 +642,12 @@
Form
+
+ ucrFilter.vb
+
+
+ UserControl
+
ucrGeomListWithAes.vb
@@ -3596,6 +3602,15 @@
ucrFactor.vb
+
+ ucrFilter.vb
+
+
+ ucrFilter.vb
+
+
+ ucrFilter.vb
+
ucrGeomListWithAes.vb
diff --git a/instat/ucrFilter.Designer.vb b/instat/ucrFilter.Designer.vb
new file mode 100644
index 00000000000..313de904116
--- /dev/null
+++ b/instat/ucrFilter.Designer.vb
@@ -0,0 +1,36 @@
+ _
+Partial Class ucrFilter
+ Inherits System.Windows.Forms.UserControl
+
+ 'UserControl overrides dispose to clean up the component list.
+ _
+ Protected Overrides Sub Dispose(ByVal disposing As Boolean)
+ Try
+ If disposing AndAlso components IsNot Nothing Then
+ components.Dispose()
+ End If
+ Finally
+ MyBase.Dispose(disposing)
+ End Try
+ End Sub
+
+ 'Required by the Windows Form Designer
+ Private components As System.ComponentModel.IContainer
+
+ 'NOTE: The following procedure is required by the Windows Form Designer
+ 'It can be modified using the Windows Form Designer.
+ 'Do not modify it using the code editor.
+ _
+ Private Sub InitializeComponent()
+ Me.SuspendLayout()
+ '
+ 'ucrFilter
+ '
+ Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
+ Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
+ Me.Name = "ucrFilter"
+ Me.ResumeLayout(False)
+
+ End Sub
+
+End Class
diff --git a/instat/ucrFilter.fr-FR.resx b/instat/ucrFilter.fr-FR.resx
new file mode 100644
index 00000000000..a3df4f013d3
--- /dev/null
+++ b/instat/ucrFilter.fr-FR.resx
@@ -0,0 +1,15 @@
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/instat/ucrFilter.resx b/instat/ucrFilter.resx
new file mode 100644
index 00000000000..1af7de150c9
--- /dev/null
+++ b/instat/ucrFilter.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/instat/ucrFilter.sw-KE.resx b/instat/ucrFilter.sw-KE.resx
new file mode 100644
index 00000000000..a3df4f013d3
--- /dev/null
+++ b/instat/ucrFilter.sw-KE.resx
@@ -0,0 +1,15 @@
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/instat/ucrFilter.vb b/instat/ucrFilter.vb
new file mode 100644
index 00000000000..8b50a87a382
--- /dev/null
+++ b/instat/ucrFilter.vb
@@ -0,0 +1,21 @@
+' Instat-R
+' Copyright (C) 2015
+'
+' This program is free software: you can redistribute it and/or modify
+' it under the terms of the GNU General Public License as published by
+' the Free Software Foundation, either version 3 of the License, or
+' (at your option) any later version.
+'
+' This program is distributed in the hope that it will be useful,
+' but WITHOUT ANY WARRANTY; without even the implied warranty of
+' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+' GNU General Public License for more details.
+'
+' You should have received a copy of the GNU General Public License k
+' along with this program. If not, see .
+
+Public Class ucrFilter
+ Private Sub ucrFilter_Load(sender As Object, e As EventArgs) Handles MyBase.Load
+
+ End Sub
+End Class