DataGrid (Revised)

  • Thread starter Thread starter Chuck Hecht
  • Start date Start date
C

Chuck Hecht

I have a datagrid dgReview I am trying to format the 4th column to remove
all of the decimals. When I try the code below the datagridtextboxcolumn
does not have a format property, now I am more confudsed then before??????

Dim aReviewGridTableStyle As New DataGridTableStyle

Dim QtyOrd As New DataGridTextBoxColumn

QtyOrd.format(0)

aReviewGridTableStyle.GridColumnStyles.Add(aCol4)

frmMain.dgReview.TableStyles.Add(aGridTableStyle)

Where am I going wrong???

chuck
 
DataGrid formatting is only supported starting NETCF V2 SP1:



http://blogs.msdn.com/netcfteam/archive/2006/04/25/583542.aspx


--
Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
 
Back
Top