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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Nicky

  1. Nicky

    String to Object

    Thanx Bangers
  2. Nicky

    String to Object

    i have a function insertAtRank(int rank, Object element) String a = textField1.getText(); what i wanna do is: insertAtRank(1, a)// but a is a String, i wanna pass it as an Object. anybody know? Thanx
  3. Nicky

    can i make a breakpage with dhtml?

    I found the code from here http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/pageBreakAfter.asp every thing works with my report. attention <P STYLE=&quot;page-break-after='always'&quot;> ... it won't work if the contain to be displayed in this zone exceeds the limit of one...
  4. Nicky

    can i make a breakpage with dhtml?

    i am using this code and it works now with IE <html> <body> <P STYLE=&quot;page-break-after='always'&quot;> ... <P STYLE=&quot;page-break-after='always'&quot;> .. </body> </html> thanx Borbardier
  5. Nicky

    how to print html page without internet address appear in the page

    when we print a html page, it always prints the internet address in the bottom of the page and the page number in the top of the page. i don't want it appear in my page, anybody knows how to do?? thanx Nicky
  6. Nicky

    can i make a breakpage with dhtml?

    I have the code below but it doesn't work, somebody finds any mistake here??? <html> <head> <STYLE> P.page {page-break-after: always} </STYLE> </HEAD> <BODY> <P CLASS=page> . content on page 1 . </P> . content on page 2 . . </P> </body> </html>
  7. Nicky

    can i make a breakpage with dhtml?

    in fact, it is an asp page that i read data from a database. Williams, with the way u do, can i click on print once and it will print all the pages? if not, it's could be a bit too long to print about 500 pages with NEXT/BACK button . thanx ps, thank you iza, i am new in dhtml so i can't do it...
  8. Nicky

    can i make a breakpage with dhtml?

    i have a long report to print from a html page. My HTML page contains different kind of car what i want exactly is to put a break page after each category of car. can i do it in dhtml or with any script?? thanx in advance Nicky

Part and Inventory Search

Back
Top