Radio buttons in Microsoft Report Viewer
I need to display radio buttons in m开发者_开发知识库y report. Based on the result from database, appropriate radio button should be selected. Until now I have been using just textboxes in the report Viewer.
Now I need to use radio buttons and one gridview.
ReportViewer does not support radio button per say. The only alternative I can think of would be to use images of radio buttons, one for selected and one for not selected.
Hope that helps.
in my problem I used it:
(change the textbox’s font to Wingdings2)
=IIf( Fields!MyBooleanField.Value, Chr(82), Chr(163))
精彩评论