# HG changeset patch
# User StephaneLenclud
# Date 1426424837 -3600
# Node ID e8bb372ae58bf3226a0681a3ddaccc72d9d57715
# Parent  e5e903ee681d66ef5cee0759d7ab78e69650cb06
Renaming demo application to HID Demo.
diff -r e5e903ee681d -r e8bb372ae58b HidDemo.csproj
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HidDemo.csproj	Sun Mar 15 14:07:17 2015 +0100
@@ -0,0 +1,166 @@
+
+
+  
+    Local
+    7.10.3077
+    2.0
+    {7435D21C-6A5C-4F57-8868-94A8D911980E}
+    Debug
+    AnyCPU
+    App.ico
+    
+    RemoteControlSample
+    
+    JScript
+    Grid
+    IE50
+    false
+    WinExe
+    RemoteControlSample
+    OnBuildSuccess
+    
+    
+    
+    v2.0
+    
+    
+    0.0
+    false
+    publish\
+    true
+    Disk
+    false
+    Foreground
+    7
+    Days
+    false
+    false
+    true
+    0
+    1.0.0.%2a
+    false
+    true
+  
+  
+    bin\Debug\
+    true
+    285212672
+    false
+    
+    DEBUG;TRACE
+    
+    true
+    4096
+    false
+    
+    false
+    false
+    false
+    false
+    4
+    full
+    prompt
+  
+  
+    bin\Release\
+    false
+    285212672
+    false
+    
+    TRACE
+    
+    false
+    4096
+    false
+    
+    true
+    false
+    false
+    false
+    4
+    none
+    prompt
+  
+  
+    true
+    bin\x86\Debug\
+    DEBUG;TRACE
+    285212672
+    4096
+    full
+    x86
+    prompt
+    MinimumRecommendedRules.ruleset
+    true
+  
+  
+    bin\x86\Release\
+    TRACE
+    285212672
+    true
+    4096
+    x86
+    prompt
+    MinimumRecommendedRules.ruleset
+  
+  
+    
+      System
+    
+    
+      System.Data
+    
+    
+      System.Drawing
+    
+    
+      System.Windows.Forms
+    
+    
+      System.XML
+    
+  
+  
+    
+      Code
+    
+    
+      Form
+    
+    
+      MainForm.cs
+    
+    
+      Code
+    
+    
+  
+  
+    
+      False
+      .NET Framework 3.5 SP1 Client Profile
+      false
+    
+    
+      False
+      .NET Framework 3.5 SP1
+      true
+    
+  
+  
+    
+      MainForm.cs
+    
+  
+  
+    
+      {4f3f96e6-668a-488e-ba0c-ed249aface9e}
+      SharpLibHid
+    
+  
+  
+  
+    
+    
+  
+
\ No newline at end of file
diff -r e5e903ee681d -r e8bb372ae58b MainForm.Designer.cs
--- a/MainForm.Designer.cs	Sun Mar 15 14:01:30 2015 +0100
+++ b/MainForm.Designer.cs	Sun Mar 15 14:07:17 2015 +0100
@@ -26,6 +26,7 @@
             this.columnHeaderRepeat = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
             this.columnHeaderTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
             this.tabPageDevices = new System.Windows.Forms.TabPage();
+            this.buttonRefresh = new System.Windows.Forms.Button();
             this.buttonTreeViewExpandAll = new System.Windows.Forms.Button();
             this.buttonTreeViewCollapseAll = new System.Windows.Forms.Button();
             this.treeViewDevices = new System.Windows.Forms.TreeView();
@@ -33,7 +34,6 @@
             this.textBoxTests = new System.Windows.Forms.TextBox();
             this.statusStrip = new System.Windows.Forms.StatusStrip();
             this.toolStripStatusLabelDevice = new System.Windows.Forms.ToolStripStatusLabel();
-            this.buttonRefresh = new System.Windows.Forms.Button();
             this.tabControl.SuspendLayout();
             this.tabPageMessages.SuspendLayout();
             this.tabPageDevices.SuspendLayout();
@@ -163,6 +163,16 @@
             this.tabPageDevices.Text = "Devices";
             this.tabPageDevices.UseVisualStyleBackColor = true;
             // 
+            // buttonRefresh
+            // 
+            this.buttonRefresh.Location = new System.Drawing.Point(813, 64);
+            this.buttonRefresh.Name = "buttonRefresh";
+            this.buttonRefresh.Size = new System.Drawing.Size(75, 23);
+            this.buttonRefresh.TabIndex = 3;
+            this.buttonRefresh.Text = "Refresh";
+            this.buttonRefresh.UseVisualStyleBackColor = true;
+            this.buttonRefresh.Click += new System.EventHandler(this.buttonRefresh_Click);
+            // 
             // buttonTreeViewExpandAll
             // 
             this.buttonTreeViewExpandAll.Location = new System.Drawing.Point(813, 6);
@@ -226,16 +236,6 @@
             this.toolStripStatusLabelDevice.Size = new System.Drawing.Size(61, 17);
             this.toolStripStatusLabelDevice.Text = "No Device";
             // 
-            // buttonRefresh
-            // 
-            this.buttonRefresh.Location = new System.Drawing.Point(813, 64);
-            this.buttonRefresh.Name = "buttonRefresh";
-            this.buttonRefresh.Size = new System.Drawing.Size(75, 23);
-            this.buttonRefresh.TabIndex = 3;
-            this.buttonRefresh.Text = "Refresh";
-            this.buttonRefresh.UseVisualStyleBackColor = true;
-            this.buttonRefresh.Click += new System.EventHandler(this.buttonRefresh_Click);
-            // 
             // MainForm
             // 
             this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
@@ -244,7 +244,7 @@
             this.Controls.Add(this.statusStrip);
             this.Controls.Add(this.tabControl);
             this.Name = "MainForm";
-            this.Text = "Remote Control Sample";
+            this.Text = "HID Demo";
             this.Load += new System.EventHandler(this.MainForm_Load);
             this.tabControl.ResumeLayout(false);
             this.tabPageMessages.ResumeLayout(false);
diff -r e5e903ee681d -r e8bb372ae58b RemoteControlSample.csproj
--- a/RemoteControlSample.csproj	Sun Mar 15 14:01:30 2015 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,166 +0,0 @@
-
-
-  
-    Local
-    7.10.3077
-    2.0
-    {F676C5E5-266C-439A-98C4-EF21CB9957F2}
-    Debug
-    AnyCPU
-    App.ico
-    
-    RemoteControlSample
-    
-    JScript
-    Grid
-    IE50
-    false
-    WinExe
-    RemoteControlSample
-    OnBuildSuccess
-    
-    
-    
-    v2.0
-    
-    
-    0.0
-    false
-    publish\
-    true
-    Disk
-    false
-    Foreground
-    7
-    Days
-    false
-    false
-    true
-    0
-    1.0.0.%2a
-    false
-    true
-  
-  
-    bin\Debug\
-    true
-    285212672
-    false
-    
-    DEBUG;TRACE
-    
-    true
-    4096
-    false
-    
-    false
-    false
-    false
-    false
-    4
-    full
-    prompt
-  
-  
-    bin\Release\
-    false
-    285212672
-    false
-    
-    TRACE
-    
-    false
-    4096
-    false
-    
-    true
-    false
-    false
-    false
-    4
-    none
-    prompt
-  
-  
-    true
-    bin\x86\Debug\
-    DEBUG;TRACE
-    285212672
-    4096
-    full
-    x86
-    prompt
-    MinimumRecommendedRules.ruleset
-    true
-  
-  
-    bin\x86\Release\
-    TRACE
-    285212672
-    true
-    4096
-    x86
-    prompt
-    MinimumRecommendedRules.ruleset
-  
-  
-    
-      System
-    
-    
-      System.Data
-    
-    
-      System.Drawing
-    
-    
-      System.Windows.Forms
-    
-    
-      System.XML
-    
-  
-  
-    
-      Code
-    
-    
-      Form
-    
-    
-      MainForm.cs
-    
-    
-      Code
-    
-    
-  
-  
-    
-      False
-      .NET Framework 3.5 SP1 Client Profile
-      false
-    
-    
-      False
-      .NET Framework 3.5 SP1
-      true
-    
-  
-  
-    
-      MainForm.cs
-    
-  
-  
-    
-      {4f3f96e6-668a-488e-ba0c-ed249aface9e}
-      SharpLibHid
-    
-  
-  
-  
-    
-    
-  
-
\ No newline at end of file
diff -r e5e903ee681d -r e8bb372ae58b RemoteControlSample.sln
--- a/RemoteControlSample.sln	Sun Mar 15 14:01:30 2015 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,49 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 2012
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteControlSample", "RemoteControlSample.csproj", "{F676C5E5-266C-439A-98C4-EF21CB9957F2}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E70B5E73-7045-4EA7-968D-06BB68773DAB}"
-	ProjectSection(SolutionItems) = preProject
-		Rebracer.xml = Rebracer.xml
-	EndProjectSection
-EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpLibHid", "SharpLibHid.csproj", "{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}"
-EndProject
-Global
-	GlobalSection(SolutionConfigurationPlatforms) = preSolution
-		Debug|Any CPU = Debug|Any CPU
-		Debug|Mixed Platforms = Debug|Mixed Platforms
-		Debug|x86 = Debug|x86
-		Release|Any CPU = Release|Any CPU
-		Release|Mixed Platforms = Release|Mixed Platforms
-		Release|x86 = Release|x86
-	EndGlobalSection
-	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|Mixed Platforms.Build.0 = Debug|x86
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|x86.ActiveCfg = Debug|x86
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|x86.Build.0 = Debug|x86
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|Any CPU.Build.0 = Release|Any CPU
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|Mixed Platforms.ActiveCfg = Release|x86
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|Mixed Platforms.Build.0 = Release|x86
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|x86.ActiveCfg = Release|x86
-		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|x86.Build.0 = Release|x86
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|Any CPU.Build.0 = Debug|Any CPU
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|x86.ActiveCfg = Debug|Any CPU
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|Any CPU.ActiveCfg = Release|Any CPU
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|Any CPU.Build.0 = Release|Any CPU
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
-		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|x86.ActiveCfg = Release|Any CPU
-	EndGlobalSection
-	GlobalSection(SolutionProperties) = preSolution
-		HideSolutionNode = FALSE
-	EndGlobalSection
-EndGlobal
diff -r e5e903ee681d -r e8bb372ae58b SharpLibHid.sln
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SharpLibHid.sln	Sun Mar 15 14:07:17 2015 +0100
@@ -0,0 +1,63 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 2012
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteControlSample", "RemoteControlSample.csproj", "{F676C5E5-266C-439A-98C4-EF21CB9957F2}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E70B5E73-7045-4EA7-968D-06BB68773DAB}"
+	ProjectSection(SolutionItems) = preProject
+		Rebracer.xml = Rebracer.xml
+	EndProjectSection
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpLibHid", "SharpLibHid.csproj", "{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HidDemo", "HidDemo.csproj", "{7435D21C-6A5C-4F57-8868-94A8D911980E}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Debug|Mixed Platforms = Debug|Mixed Platforms
+		Debug|x86 = Debug|x86
+		Release|Any CPU = Release|Any CPU
+		Release|Mixed Platforms = Release|Mixed Platforms
+		Release|x86 = Release|x86
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|Mixed Platforms.Build.0 = Debug|x86
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|x86.ActiveCfg = Debug|x86
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Debug|x86.Build.0 = Debug|x86
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|Any CPU.Build.0 = Release|Any CPU
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|Mixed Platforms.ActiveCfg = Release|x86
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|Mixed Platforms.Build.0 = Release|x86
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|x86.ActiveCfg = Release|x86
+		{F676C5E5-266C-439A-98C4-EF21CB9957F2}.Release|x86.Build.0 = Release|x86
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Debug|x86.ActiveCfg = Debug|Any CPU
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|Any CPU.Build.0 = Release|Any CPU
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
+		{4F3F96E6-668A-488E-BA0C-ED249AFACE9E}.Release|x86.ActiveCfg = Release|Any CPU
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Debug|Mixed Platforms.Build.0 = Debug|x86
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Debug|x86.ActiveCfg = Debug|x86
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Debug|x86.Build.0 = Debug|x86
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Release|Any CPU.Build.0 = Release|Any CPU
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Release|Mixed Platforms.ActiveCfg = Release|x86
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Release|Mixed Platforms.Build.0 = Release|x86
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Release|x86.ActiveCfg = Release|x86
+		{7435D21C-6A5C-4F57-8868-94A8D911980E}.Release|x86.Build.0 = Release|x86
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+EndGlobal