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

    XSL-FO dynamic table headers

    I'm building an FO stylesheet to generate a PDF using FOP. I have a table that could appear on any page (depending on flow), and could be long enough to break across pages. I need the header to change depending on whether it's the first time the header prints, or it's a carryover header, i.e...
  2. JavaKat

    XSL FO (PDF) - Image Vertical Align

    I am trying to vertically align a small graphic with the top of the following text. This is a fo stylesheet for rendering xml into a pdf, using Apache's FOP parser. Here's my code, sans my failed attempts at alignment: <fo:block text-align=&quot;start&quot; font-size=&quot;10pt&quot...
  3. JavaKat

    Java GUI for C Application?

    Hey, how about that... page 843 in Core Java II... &quot;Calling a C Function from the Java Programming Language&quot; Thanks!!!
  4. JavaKat

    Java GUI for C Application?

    Is this even possible? I've found a lovely open-source C application that only has a bare-bones text interface (type a for add, b for browse, etc.). This application really deserves a nice GUI. That, and I hate text prompts with a passion. I can make Java sit up and beg, but I don't know...
  5. JavaKat

    Great menu ... small problem

    Try this: Change the stuff in the body of the page to this (to get you started): <div id=&quot;divMenu1&quot; style=&quot;position:absolute; top:250; left:30; visibility:hidden; background-color:F0F0F0&quot;> <nobr> <a href=&quot;http://www.dynamicdrive.com&quot;>Dynamic Drive</a> - <a...
  6. JavaKat

    Cross-window open/close

    Here's a crazy idea, I don't know if it'll work. When you submit your form, pass the form data to your popup page. Have the javascript in the popup page submit the data for the query, run a timeout (pause), and then self-destruct after submitting the query. Best of luck with it!
  7. JavaKat

    Input tags with out a Form tag

    Hmmm... this is another button that works without a form... <input type=&quot;button&quot; value=&quot;Click me!&quot; onclick=&quot;javascript:alert('Boo!');&quot; /> Works in IE 5 and Netscape 6, no problem. Not sure about other browser versions, though... This should be able to trigger...
  8. JavaKat

    To frame or not to frame..

    Frames are indeed lovely when done right, it's just that doing them &quot;right&quot; tends to turn into a bigger hairball than the irritation of just repeating code. There are javascript workarounds to ensure that your site is always accessed with frames in place (like from search engines)...
  9. JavaKat

    Ins/Upd an unbound value into a record

    Nope, I've been busy with Java classpath errors elsewhere. I've passed this along to the designer of the database, and hopefully it'll help him along. Thank you so much for your prompt reply! JavaKat
  10. JavaKat

    Ins/Upd an unbound value into a record

    Thanks, I'll clarify. Yes, I do want the value in the products text box to be passed into the table. JavaKat
  11. JavaKat

    Ins/Upd an unbound value into a record

    Many Apologies and Obsequies, I am (gasp) neither an Access programmer nor the creator of this database, but I was asked for help on this particular problem, and am now incurably curious about the solution. TABLES: Products - ProductID (PK) - ProductName (unique) - ProductDescription...

Part and Inventory Search

Back
Top