Hi Roger,
you solution worked for me - thank you very much for that.
I realise that it is not a perfect solution because I am editing the source file but this works for me.
Just to confirm, I opened the page
EventMyEnrollments.ascx in Visual Studio (could have opened it in textpad of course) and added the tags as indicated by you.
The code at those last 2 columns now looks like this:
<
asp:TemplateColumn
headerText
=
"Approved"
visible
=
"false"
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"chkApproved"
runat
=
"server"
visible
=
"false"
Enabled
=
"false"
Checked='<%# DataBinder.Eval(Container.DataItem,"Approved") %>'/>
</
ItemTemplate
>
</
asp:TemplateColumn
>
<
asp:BoundColumn
DataField
=
"Approved"
HeaderText
=
"Approved"
Visible
=
"false"
></
asp:BoundColumn
>
<
asp:TemplateColumn
headerText
=
"Amount"
visible
=
"false"
>
<
ItemTemplate
>
<
asp:Label
id
=
"lblAmount"
runat
=
"server"
visible
=
"false"
></
asp:Label
>
</
ItemTemplate
>
</
asp:TemplateColumn
>
<
asp:BoundColumn
DataField
=
"PayPalAmount"
HeaderText
=
"Amount"
DataFormatString
=
"{0:F2}"
Visible
=
"false"
></
asp:BoundColumn
>
In yellow being what I added.
Again, thank you very much for your help,
Best regards,
leroyb