Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/05/2008, 04:42
imc_bojan
 
Fecha de Ingreso: noviembre-2007
Mensajes: 31
Antigüedad: 17 años, 3 meses
Puntos: 0
Respuesta: Problema en Grid con formato númérico

Bueno al final lo he solucionado yo mismo. Os dejo la solución.
Se soluciona formateando cada columna, en el evento Formating Row

Private Sub GRID_FormattingRow
(ByVal sender As Object, ByVal e As Janus.Windows.GridEX.RowLoadEventArgs) Handles GRID.FormattingRow

Try
If Not GRID.CurrentTable Is Nothing Then
If GRID.CurrentTable.Columns.Count > 0 Then
Dim objColumna As Janus.Windows.GridEX.GridEXColumn
For Each objColumna In GRID.CurrentTable.Columns
objColumna.FormatString = ""
Next
End If
End If
Catch ex As Exception
End Try
End Sub