I found a solution to most of the things I had questions on. Here they are:
1. have a center footer with the current date
Solution:
OLE2.SET_PROPERTY (oPageSetup, 'CenterFooter', '&D');
2. add a title on the top header "Frequency Report"
Solution:
OLE2.SET_PROPERTY (oPageSetup...
Ok, I found a solution to this. Here it is for those who dont have it yet:
oPageSetup := OLE2.GET_OBJ_PROPERTY(oWorkSheet, 'PageSetup');
OLE2.SET_PROPERTY (oPageSetup, 'PrintTitleRows', '$1:$1');
Hi,
I need to make an excel report using forms 6i ole2 that repeats column titles on every page when it is printed. The first row is the column title.
Any ideas?
Thanks
Alex
Hi,
In Excel, we can set the left margin by saying
With ActiveSheet.PageSetup
.LeftMargin = Application.InchesToPoints(0.25)
End With
How do I say the same thing in ole2?
Thanks in advance,
Alex
Hi,
There are a few things I'd like to do with an Excel document generated by one of my applications:
1. have a center footer with the current date
2. add a title on the top header "Frequency Report"
3. have a right footer with <page number> of <total pages>
4. have a left footer with the...
Hi,
I have a jsp page where I load the results of a query from a database. Now that query takes time (about 30 secs). In the meantime, I want to display another page there with a message like "Please Wait..."
For eg., in the figure below, here's a page with three tabs: EMP, DEPT and CUST. So...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.