I'm need to add a $ to one of my fields in the datagrid...heres the code I'm using to format the cell and get the data....anyone tell me how to add a $ to this field?


VB Code:
  1. Dim grdColStyle4 As New DataGridTextBoxColumn()
  2.         With grdColStyle4
  3.             .HeaderText = "Receipt Amt"
  4.             .MappingName = "transaction_amt"
  5.             .Width = 100
  6.             .Alignment = HorizontalAlignment.Center
  7.             .ReadOnly = True
  8.         End With