Hi
I need some help making a report design of this
* Months
Project name Jan Feb Mar Apr May Jun Aug Sep Okt Nov Dec
Project 1 fuse * * * * *
Project 2 start * * * *
Clean rum something * * * * * * *
Make Asic design * * * *
* Days
Project name 1 2 3 4 5 6 7 8 9 10 11 ... andso ... 31
x1 * * * * *
x2 * * * *
x3 * * * * * * * *
x4 * * * *
I know that there is a Gantt diagram and I thing that is the way to make it, but how ? I have to make this in programming not in design time, because the page size can be A4 or A3 or something else.
Janus S. Andersen
Good Day,
I was wondering if you could lend me a helping hand?
I had a report set out like people do in spreadsheets, heading, followed by data underneathe.
I was using a page header as I wanted the heading to be displayed for each page the data flows onto, the only problem was, once the columns exceeded a certain number, the headings were truncated and further not displayed and then the data on the next page didn't have a heading.
Next I decided to use a report header, which appeared to be the answer to my solution at first but the headers were only displayed once, thus the remaining pages didn't contain any headings for the data they represented. Using a Group Header gave me the same result.
Basically for each column display the results for A, B & C, for instance, I would like "A", "B" & "C" to be displayed above their respected columns of data.
Is there a way this can be achieved?
Any help will be greatly appreciated.
Thankyou,
David
private void reportViewer1_Load(object sender, EventArgs e)
{
LETGReportLibrary.
rptMasterAddress MyReport = new LETGReportLibrary.rptMasterAddress();
MyReport.AddressID = 8164;
reportViewer1.Report = MyReport;
reportViewer1.RefreshReport();
}
When I run the windows application, no data shows on the report. I know when I run the query, 14 rows come back. Why doesn't the data show in the windows application?