table date in richtextbox

  • Thread starter Thread starter grant
  • Start date Start date
G

grant

Good day,

I am trying to create a payroll report for users in a C# richtextbox. I can
show most of the data using a stringbuilder but there is certain data I
would like placed in a table view.

Is there a sample somewhere that demonstrates how to create a simple report
easy to format at runtime?

Thanks,
Grant
 
Good day,

I am trying to create a payroll report for users in a C# richtextbox. I can
show most of the data using a stringbuilder but there is certain data I
would like placed in a table view.

Is there a sample somewhere that demonstrates how to create a simple report
easy to format at runtime?

Thanks,
Grant

Try Exploring Report and Table ..

Right click the project in vs, add->new item-> Report

For this report you can add a table. and display some data. This is
the simplest solution, I know.

Ofcourse you need to have a report viewer control....

The following links can help

http://msdn.microsoft.com/en-us/library/ms251671.aspx
http://msdn.microsoft.com/en-us/library/ms252067.aspx


-Cnu
 
Back
Top