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

    XHTML Declaration not using td width in CSS

    Thanks guys. About the Boss comment I meant that he rushes us into these things for no good reason other than he read an article and now wants the latest shiney thing without thinking why. Thanks again, I will be more careful.
  2. TestingXSD

    XHTML Declaration not using td width in CSS

    I have a strange one here. I have a page that I have been using for awhile now. Our boss wants us to change or stuff to be XHTML. (We all have a Boss like this, he read an article) The problem is that when I add the XHTML declaration to the top of the page the width on the td tag of a table...
  3. TestingXSD

    Cascading elements question

    I just realized what I said wrong. I need to apply to ANY blockqoute tag. There may be a blockqoute inside a div, inside a div, inside someother type of tag. I just want to say any "blockqoute" tag within this type of div tag gets this type of style. I am trying to avoid 50 variations on the...
  4. TestingXSD

    Using Selected text from a text box

    I can capture the selStart, seltext and sellentgh in the OnExit event of the textbox. This is the only workaround I can find. Thanks -T
  5. TestingXSD

    Encode/Decode Text String

    If you want HTMl encoding, then try this: Function URLEncode(Data) Dim I, C, Out For I = 1 To Len(Data) C = Asc(Mid(Data, I, 1)) If C = 32 Then Out = Out + "+" ElseIf C < 48 Then Out = Out + "%" + Hex(C) Else Out = Out +...
  6. TestingXSD

    Using Selected text from a text box

    I have a text box with HTML content. I would like the user to be able to select a portion of the text and then click a command button that would do something with that text. I have tried to use the textbox.seltext, but you have to set focus on the textbox first, which selects everything in the...
  7. TestingXSD

    Cascading elements question

    Given that I have a div tag wrapping a portion of my content, is there a way that I can apply a style to every nested Blockquote? This question is not as dumb as it sounds. I'm talking about nesting. Something instead of: Div.content blockqoute { FONT-FACE:Arial } Div.content blockqoute...
  8. TestingXSD

    looping music on web site

    Just as a side note, most users find websites that force them to play music annoying. Maybe it would better to have a control where a user could turn the music off? This would encourage people to stay on your site. -T
  9. TestingXSD

    ul bulleted list alignment problem

    I can't define the ul tag with CSS either because there has to be one style sheet for over 8000 documents. If I define a margin here then it will be a margin for the othe 7999 documents. I can't give it one specific label wither because this document is displayed multiple places, each with...
  10. TestingXSD

    ul bulleted list alignment problem

    I have page that has a wrapping div tag with another "nav" type div tag contained within. My problem is that the bullets for the list in the main section do not intent as they should. The only work around I have found is set either the indent for the li or to set margins on the ul. I can't...
  11. TestingXSD

    XSD and selection based on Attributes

    If this is the wrong forum, please post correct forum. I am working on a complex XSD. I would to restrict the child elements available based on the value of an attribute. I am not sure I can do this. I know how to do this based on an element, but not the atrribute. For example: I have...

Part and Inventory Search

Back
Top