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: *

  • Users: sfenx
  • Order by date
  1. sfenx

    CSS height not 100% in Firefox

    you're right Vragabond, I just wish there was also a workaround for FF...
  2. sfenx

    CSS height not 100% in Firefox

    Vragabond, I tryed the min-height but it won't work. also I thought IE doesn't support min or max height...
  3. sfenx

    how can I insert line break into a TextArea control

    to be complete : <% comment = "take a break..." & chr(13) & chr(10) & "and begin a new line" %> chr(10) takes a linefeed chr(13) takes a carriage Return
  4. sfenx

    CSS height not 100% in Firefox

    I have a liquid 100% width page with fixed header and footer. It works perfectly in every browser. But when the visual content gets longer and the vertical scrollbar appears (by resizing), the background stops because the height has changed and is now more than 100%. I fixed this in I.E. by...
  5. sfenx

    function to obtain cell reach

    thanks xlbo, that other thread should help me out ! thought that it would be possible without VBA, that's why I posted it here.
  6. sfenx

    function to obtain cell reach

    yes I mean Merged cells. I want to know the range for every cell. i.e.: a non-merged cell C5 should give me the value 'C5' if cells C5 to E6 are merged, every cell between C5 and E6 should give me the value 'C5:E6'
  7. sfenx

    function to obtain cell reach

    I want to generate a clean HTML table with just the basis html-tags (so not the 'save as' option that gives me to much supplemental code !). for concatenated cells I need to know what their range is (i.e. $C$5:$E$6) to define the colspan and rowspan.
  8. sfenx

    function to obtain cell reach

    is there a function that can tell me if a cell is part of a bigger, concatenated cell? and can I obtain de dimension of the concateneted cell i.e. if cell B3 is part of a concatenated cell with a reach from B2 to C3, can I get as result "B2:C3" or something like that ?
  9. sfenx

    bottom div problem

    can someone help me with a problem I have with DIVs who don't expand to the bottom of a parent div? on http://www.andree.be/css_test2.html there is no problem because the content of the right column exceeds the height of the left column. but when the content in...
  10. sfenx

    vertically align 2 div's to top of other div

    thanks Vragabond. the dummy div did it. Great !
  11. sfenx

    vertically align 2 div's to top of other div

    I changed the code and got it to work fine in IE, but in Mozilla I can't seem to draw the border on the body. it just draws a line on top of the div. I think there a problem with the height of that div. Can someone tell me if my css is correct and if this is the right way to do it ? <html>...
  12. sfenx

    vertically align 2 div's to top of other div

    Perhaps your right. What I want is a centered page of 800px width a border. within that page a left menu-column and a right content-column. isn't it more easy to define these columns as divs ? also I don't want any gaps so the 2 columns should enterly fill up the 800px content.
  13. sfenx

    vertically align 2 div's to top of other div

    Hi, I would like to vertically align the content of 2 div's to the TOP of another div that contains these 2 div's. The body-ID is necessary to draw a border. The problem in Mozilla is also that the right boxtext doesn't stay within the div. Here's what I have for the moment. Any advice would be...
  14. sfenx

    Force a DIV to the bottom of a container

    sorry, my mistake previous post.
  15. sfenx

    Force a DIV to the bottom of a container

    Hi, I would like to vertically align the content of 2 div's to the TOP of another div that contains these 2 div's. The body-ID is necessary to draw a border. The problem in Mozilla is also that the right boxtext doesn't stay within the div. Here's what I have for the moment. Any advice would be...
  16. sfenx

    send generated RTF file directly to browser

    This is just the problem I'm dealing with. All I want to do is send a string (i.e. 'this is my test') to the Stream object. I tryed the Request.BinaryRead, but that doesn't work in this case. What do I have to do to send binary data to the Stream object without using an external file?
  17. sfenx

    send generated RTF file directly to browser

    This looks like the perfect solution, but I have a problem with objStream.Write MyRTFStuff. Do I have to put binary data in the MyRTFStuff variable? I tryed a lot but nothing worked. This is the error message I get : "ADODB.stream - arguments are of the wrong type, fall out of reach or are in...
  18. sfenx

    send generated RTF file directly to browser

    I generated an RTF (richtext) file with ASP and I want my browser to open it with a RTFreader (like Word) that is installed on my computer. I've read a lot of articles on how to do this, but they always write the file to the server first. My question : is there a way to send my RTFgenerated file...
  19. sfenx

    link target problem

    mwolf00, The reason I don't use your solution is that I need a variable to go along with the url, and this variable I'm getting from a dropdownlist (so different values are possible). I really need the target attribute to work in the onClick-event. <img src=&quot;h_link-arrow.gif&quot...
  20. sfenx

    link target problem

    I have an image used as a button that opens another window. The problem is I want that page to be opened in another (new) window. In my code the &quot;window.location.target&quot; doesn't work. <img src=&quot;h_link-arrow.gif&quot...

Part and Inventory Search

Back
Top