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

    Disabled Text Area and CSS

    Cheers. That works fine. Interestingly, it works in IE6, IE7 and FireFox. What do you mean when you say IE6 doesn't support readonly properly?
  2. djabell

    a question about html tables

    Not sure if this answers your problem but have you tried border collapse? border-collapse: collapse;
  3. djabell

    Disabled Text Area and CSS

    I've got an HTML page with a standard textarea on it, which is disabled to stop users editing the text. I've changed the state of the textarea to disabled and as expected, the text appears grey in IE7. Thinking it would be a straight forward task to modify the default text colour, I created a...
  4. djabell

    Custom JButton

    Ah! Easy when you think about it! Thanks. Actually used setBorder(BorderFactory.createEmptyBorder(0,0,0,0)) and setBackground(Color.white) but has the same effect as the solution you gave. Dunno why I didn't think of that myself!! Thanks for that.
  5. djabell

    Custom JButton

    Anyone know a quick way of removing the default blue button background from a JButton? All I want to show is an image icon without the button outline and I'd rather not override the painting of the button if I can help it. Any help appreciated!
  6. djabell

    Next Record in Report

    Probably an obvious question but how do you force a report to show one record per page? I could probably work it out using code but I'm wondering if there's a simpler way.
  7. djabell

    Excel and ODBC

    Cheers - this is exactly what I wanted.
  8. djabell

    Excel and ODBC

    Cheers for your reply. What I really mean is, can I connect to an ODBC datasource (with an Access file) from an Excel spreadsheet without having to specify the path of the .mdb file? When I've connected to ODBC in the past through Java, using the JDBC:ODBC bridge driver, I haven't had to...
  9. djabell

    Excel and ODBC

    I'm trying to populate a simple Excel worksheet from data within MS Access, setup as an ODBC datasource. I've looked up some sample code and every piece of code I've seen has a reference to the absolute path of the .mdb file. Is there a way to simply access the datasource the way ODBC *should*...
  10. djabell

    Floating boxes within DIV boxes

    One more thing, the .pagebox class stops a bit before the floating elements stop. All of what you say makes complete sense, but I'm probably missing something somewhere down the line - any more ideas?
  11. djabell

    Floating boxes within DIV boxes

    Cheers. Read your postings, tried a few hings, but still no luck. I've included the whole of my CSS and the whole of my HTML. CSS --- body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color:#999999; text-align: justify; background-color: #003333; }...
  12. djabell

    Corrupt JPEG File

    Okay not sure which forum to post this, so I thought I'd try this one...I've just recovered some files from a damaged CDROM and, for the most part, this has been successful. However, one of the files (a jpeg) file is corrupt. Normally, I'd just accept that it's damaged and delete it. However...
  13. djabell

    Floating boxes within DIV boxes

    The relevant HTML coding is as follows: <body> <!-- Page Box --> <div class="pagebox"> <div class="title"></div> <div class="text"><div class="contentimg"></div><p class="title">Home</p><p>Blah, blah, blah</p> <div class="picbox"> <div class="pic"><img src="photos/thumbs/DSCF0110.jpg"></div>...
  14. djabell

    Floating boxes within DIV boxes

    I'm having a problem displaying floating boxes within a DIV box. I've got four DIV boxes: one to act as a container for the other three, one title box to hold a title graphic, one middle box for the main content of my page and a bottom box to hold a curved graphic. What I'm trying to do is...
  15. djabell

    Box Positioning using CSS

    I want to have a simple layout with a title box, a content box and a footer box, with a small space between each. The result I'm looking for is the title box at the top, the content box in the middle and just below the content box, a footer box. I've positioned the title box and content box...
  16. djabell

    CSS and Opacity

    It's always the obvious answers that pass you by...thanks, that worked a treat.
  17. djabell

    CSS and Opacity

    Just a quickie. I've set the opacity on a links div to be 0.5, but when I add links, they too take on the opacity. I've set the opacity for the actual links to 1.0, but they are still opaque. Is there any easy way to have an opaque div but a non-opaque content, giving the impression of an...
  18. djabell

    JAR Files

    Yes. Before using JAR file, I read in the image files as follows: Image i = Toolkit.getDefaultToolkit().getImage(&quot;file.gif&quot;); I now read in the images files as follows: URL url = JiCGUI.class.getResource(&quot;myfile.gif&quot;); img = Toolkit.getDefaultToolkit().getImage(url); The...
  19. djabell

    JAR Files

    No - I've modified the manifest file and I invoke the app as java -jar .... Thanks anyway.
  20. djabell

    Upload File To Database

    I had an issue a while back whereby I had to process files uploaded via a web form using JSP. I have to make reference to the RFC1867 standard for uploading files via forms. I reckon you might need to make reference too.

Part and Inventory Search

Back
Top