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

    disabling controls on page removes CSS

    Yes, I've tried XHTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> And, I've tried HTML 4.01: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...
  2. hugobossv8

    disabling controls on page removes CSS

    Thanks, BillyRayPreachersSon, I tried what you recommended, but it didn't work...any other ideas?
  3. hugobossv8

    disabling controls on page removes CSS

    Hello, I'm using the following code to disable all controls on my page - in IE 6.0, however, the CSS that's applied to my hyperlinks disappears. Is there anyway to retain the CSS settings on disabled controls? for (i in document.all){ document.all[i].disabled = true; } Here's...
  4. hugobossv8

    bridge cross-domain iframe

    Thanks, this is close to what I'm looking for but not the answer. The domain suffixes are different and it says on the link you sent that: "Furthermore, this property cannot be used to allow cross-frame communication among frames with different domain suffixes. For example, a page in one frame...
  5. hugobossv8

    bridge cross-domain iframe

    Hello, I need to resize an iframe based on content. Problem is that the content of the iframe is not in same domain as parent page. So I get the permission denied message. I would like to place some bridge file or policy file of some sort that allows access to the iframe, like so...
  6. hugobossv8

    Excel Conditional Formatting with More Than Three Conditions

    Thanks Ken and Happy New Year! :)
  7. hugobossv8

    Excel Conditional Formatting with More Than Three Conditions

    Please disregard my last post. I figured it out thanks to the following link: http://www.ozgrid.com/VBA/excel-conditional-formatting-limit.htm and here's the answer: Private Sub Worksheet_Change(ByVal Target As Range) Dim oCell As Range If Not Intersect(Target, Range(&quot;A10:X51&quot;)) Is...
  8. hugobossv8

    Excel Conditional Formatting with More Than Three Conditions

    Ok, one last question. How do I get the code below to work for a specific range - ie (&quot;A1:X50&quot;) - instead of the entire worksheet. I've tried a few things and couldn't get it to work. Private Sub Worksheet_Change(ByVal Target As Range) Dim oCell As Range For Each oCell In Target...
  9. hugobossv8

    Excel Conditional Formatting with More Than Three Conditions

    Thanks again! Yes, I did notice that. :)
  10. hugobossv8

    Excel Conditional Formatting with More Than Three Conditions

    Thanks KenWright! Exactly what I was looking for. I made sure to give you a star too :)
  11. hugobossv8

    Excel Conditional Formatting with More Than Three Conditions

    Great stuff! Now, how do I change the color of a cell right above the target cell (the cell right above the cell that a value has just been inputted into). Here's what I want to do, I just don't know how to code it: Private Sub Worksheet_Change(ByVal Target As Range) Dim oCell As Range For...

Part and Inventory Search

Back
Top