i want to create a customer bill type report using crystal reports in .net. i know that a crystal report prints one header which conatins the colums headers and below the corresponding data colums from a table.But i want invoice type report in which i can keep columns wherever i like in the report. e.g in the top left i want to keep- "To"-customer name i want to create multiple headers and data rows. how?
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...