Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. avarghese03

    Formatting an Excel document using OLE2

    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...
  2. avarghese03

    Print heading on each page in ole2

    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');
  3. avarghese03

    Print heading on each page in ole2

    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
  4. avarghese03

    InchesToPoints

    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
  5. avarghese03

    Formatting an Excel document using OLE2

    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...
  6. avarghese03

    Page Synchronization

    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...

Part and Inventory Search

Back
Top