If you have dabbled with Smartphone 2003 Smart Device Applications using Visual Studio.Net you may have been frustrated with the fact that the DataGrid appears in the toolbox and can be dragged onto a form, but if you then try to compile you will get an error:
Type: System.Windows.Form.DataGrid is not defined.
When I first saw this I googled it and found messages to the effect that DataGrid is not supported on the SmartPhone which was quite a disappointment to say the least.
Luckily though, it is not true.
All you need to do is add a reference to the DataGrid dll in your Visual Studio 2003 installation folder. Typically:
C:\Program Files\Microsoft Visual Studio .NET 2003\CompactFrameworkSDK\v1.0.5000\Windows CE\System.Windows.Forms.DataGrid.dll
And then you have a DataGrid for your Smartphone. Simple once you know, which is why I have posted this.