Adding and removing row is now working.
Can now have any number of text field.
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7 <ProjectGuid>{7EE64074-8CDB-4448-B40C-81B75D6B31CD}</ProjectGuid>
8 <OutputType>WinExe</OutputType>
9 <AppDesignerFolder>Properties</AppDesignerFolder>
10 <RootNamespace>SharpDisplayClient</RootNamespace>
11 <AssemblyName>SharpDisplayClient</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 <FileAlignment>512</FileAlignment>
14 <TargetFrameworkProfile />
16 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17 <PlatformTarget>AnyCPU</PlatformTarget>
18 <DebugSymbols>true</DebugSymbols>
19 <DebugType>full</DebugType>
20 <Optimize>false</Optimize>
21 <OutputPath>bin\Debug\</OutputPath>
22 <DefineConstants>DEBUG;TRACE</DefineConstants>
23 <ErrorReport>prompt</ErrorReport>
24 <WarningLevel>4</WarningLevel>
25 <Prefer32Bit>false</Prefer32Bit>
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28 <PlatformTarget>AnyCPU</PlatformTarget>
29 <DebugType>pdbonly</DebugType>
30 <Optimize>true</Optimize>
31 <OutputPath>bin\Release\</OutputPath>
32 <DefineConstants>TRACE</DefineConstants>
33 <ErrorReport>prompt</ErrorReport>
34 <WarningLevel>4</WarningLevel>
35 <Prefer32Bit>false</Prefer32Bit>
37 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
38 <DebugSymbols>true</DebugSymbols>
39 <OutputPath>..\..\bin\MiniDisplay\Debug\</OutputPath>
40 <DefineConstants>DEBUG;TRACE</DefineConstants>
41 <DebugType>full</DebugType>
42 <PlatformTarget>x86</PlatformTarget>
43 <ErrorReport>prompt</ErrorReport>
44 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
45 <Prefer32Bit>false</Prefer32Bit>
47 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
48 <OutputPath>bin\x86\Release\</OutputPath>
49 <DefineConstants>TRACE</DefineConstants>
50 <Optimize>true</Optimize>
51 <DebugType>pdbonly</DebugType>
52 <PlatformTarget>x86</PlatformTarget>
53 <ErrorReport>prompt</ErrorReport>
54 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
55 <Prefer32Bit>false</Prefer32Bit>
58 <Reference Include="System" />
59 <Reference Include="System.Core" />
60 <Reference Include="System.ServiceModel" />
61 <Reference Include="System.Xml.Linq" />
62 <Reference Include="System.Data.DataSetExtensions" />
63 <Reference Include="Microsoft.CSharp" />
64 <Reference Include="System.Data" />
65 <Reference Include="System.Deployment" />
66 <Reference Include="System.Drawing" />
67 <Reference Include="System.Windows.Forms" />
68 <Reference Include="System.Xml" />
71 <Compile Include="Client.cs" />
72 <Compile Include="MainForm.cs">
73 <SubType>Form</SubType>
75 <Compile Include="MainForm.Designer.cs">
76 <DependentUpon>MainForm.cs</DependentUpon>
78 <Compile Include="Program.cs" />
79 <Compile Include="Properties\AssemblyInfo.cs" />
80 <EmbeddedResource Include="MainForm.resx">
81 <DependentUpon>MainForm.cs</DependentUpon>
83 <EmbeddedResource Include="Properties\Resources.resx">
84 <Generator>ResXFileCodeGenerator</Generator>
85 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
86 <SubType>Designer</SubType>
88 <Compile Include="Properties\Resources.Designer.cs">
89 <AutoGen>True</AutoGen>
90 <DependentUpon>Resources.resx</DependentUpon>
91 <DesignTime>True</DesignTime>
93 <None Include="Properties\Settings.settings">
94 <Generator>SettingsSingleFileGenerator</Generator>
95 <LastGenOutput>Settings.Designer.cs</LastGenOutput>
97 <Compile Include="Properties\Settings.Designer.cs">
98 <AutoGen>True</AutoGen>
99 <DependentUpon>Settings.settings</DependentUpon>
100 <DesignTimeSharedInput>True</DesignTimeSharedInput>
104 <None Include="App.config" />
107 <ProjectReference Include="..\Interface\SharpDisplayInterface.csproj">
108 <Project>{88eee0dc-abbc-4738-bad6-7e08cf7f50f9}</Project>
109 <Name>SharpDisplayInterface</Name>
112 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
113 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
114 Other similar extension points exist, see Microsoft.Common.targets.
115 <Target Name="BeforeBuild">
117 <Target Name="AfterBuild">