hi,
Does anybody have an idea about how to write a general report generator module?
Right now, I can create a report file by coding the specific position on a page. codes like following:
print_textbox(F ile, Page, 100, 100, 200, 300, "Hello");
It means It prints the string "Hello" at the location starts from (100, 100) to(200,300 ).
So, If I want to print the text at another location, I have to change the numberic data one by one. That is repeated work.
Does it have any solution for it to reduce the times of modifying numberic data?
Thanks
Does anybody have an idea about how to write a general report generator module?
Right now, I can create a report file by coding the specific position on a page. codes like following:
print_textbox(F ile, Page, 100, 100, 200, 300, "Hello");
It means It prints the string "Hello" at the location starts from (100, 100) to(200,300 ).
So, If I want to print the text at another location, I have to change the numberic data one by one. That is repeated work.
Does it have any solution for it to reduce the times of modifying numberic data?
Thanks
Comment