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

    windows device drivers

    hi, i'm investigating the possibility of creating some device drivers for a network card in windows.. it's for a network emulator and i want to inject bit errors in the data link layer. i know it's easier on linux, and i have code to do it, but i want to make a cross platform emulator. any...
  2. mgriffith

    access datastore through .net

    does anyone know of any way to access public folder calendar data through .net (c#), or otherwise? i can get at local folders in outlook through mapi but i haven't been able to get at the messages in public folders. i had done a similar project with exchange 5.5 and asp, but it required...
  3. mgriffith

    java3d orbits

    i have a question... i can't get my orbits to align right in java3d. it's for a satellite application, but just by hand, i can't get an x, y, and z rotation of a vertical rotation axis to create what i think it should. do you see any problems with the following functions? advice?? comments...
  4. mgriffith

    Can this be done with CSS?

    <span style=&quot;writing-mode:tb-rl;width:50px;border:1px solid #000000;&quot;> John Smith <br> 555-555-5555 </span> <span style=&quot;writing-mode:tb-rl;width:50px;border:1px solid #000000;&quot;> John Smith <br> 555-555-5555 </span> <span style=&quot;writing-mode:tb-rl;width:50px;border:1px...
  5. mgriffith

    2 cell in row width problem

    hmm.... i'm really looking for something that's probably not possible. i have thought of dynamically setting the width using javascript, but i think that would be more overhead than i'd like and it might make it render slow. if i put the nav table at 15%, it looks bad, unless that 15% works out...
  6. mgriffith

    XSL substring

    you can actually use javascript within an xsl here's a shortened example of something that i did in the past... <xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&quot;1.1&quot; xmlns:msxsl=&quot;urn:schemas-microsoft-com:xslt&quot...
  7. mgriffith

    XSL substring

    yeah that doesn't look right.... try <xsl:with-param name=&quot;char&quot; select=&quot;' '&quot; /> or <xsl:with-param name=&quot;char&quot;> </xsl:with-param> mike griffith ---------------------------- systems and control engineering case western reserve university mdg12@cwru.edu
  8. mgriffith

    align two elements either side of a DIV

    ahhh ok... try this... i set the leftmost cell to have a width=495, and then let the right cell hang in right beside it. i thought you wanted the div to fill the entire horizontal width of the screen. <div class=&quot;title&quot;> <span...
  9. mgriffith

    align two elements either side of a DIV

    what do you mean it is thicker? if you mean the bar is wider than the content below it, then put a padding of 1px around the div... that would give it 1px on each side for a total of 2 px if you want to post your code (or at least a snippet) i might be able to help more mike griffith...
  10. mgriffith

    align two elements either side of a DIV

    hmmmm i'm not sure what you mean by the bar, but did you also try to set the padding and margin on the div cell to 0?? mike griffith ---------------------------- systems and control engineering case western reserve university mdg12@cwru.edu
  11. mgriffith

    XSL substring

    <xsl:template name=&quot;strAfterLast&quot;> <!-- declare that it takes two parameters - the string and the char --> <xsl:param name=&quot;string&quot; /> <xsl:param name=&quot;char&quot; /> <xsl:choose> <!-- if the string contains the character... --> <xsl:when...
  12. mgriffith

    align two elements either side of a DIV

    what you could do would be to wrap each of the images in a <span> or any other tag with style=&quot;display:inline;&quot;... then align each of those to the left or right <div width=&quot;100%&quot;> <span style=&quot;text-align:left; width:49%;&quot;> <img src=&quot;1.gif&quot;> </span>...
  13. mgriffith

    Tables / CSS / XHTML

    when you use the class, i'd set just the class attribute of the table itself.. i.e. <table class=&quot;tbl&quot;> and in your css do something like the following table.tbl td { border-style: double; border-color: #B6864D; border-width: medium; font-size: 95%; } to apply a border...
  14. mgriffith

    2 cell in row width problem

    i've got a problem with a table... i have a main table set up with a header row (colspan 2), navigation and content cells in a row, and then a footer row (colspan 2). i need to set the navigation to a specific width (165px) and have the content take up the rest. the only...
  15. mgriffith

    setting the default base class for pages in a site

    if you have created some sort of derived page (from System.Web.UI.Page) for templates or other reasons, and you wish to use this as the default page base class (rather than System.Web.UI.Page), then simply add this line into your web.config file <!-- pages Attributes...
  16. mgriffith

    XSLT site Search

    have you investigated the possibility of using msxsl:script? i have been able to utilize many javascript functions, and other things by using this. an example would be ---------------------------------- <xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot...
  17. mgriffith

    xsl:value-of

    another way of doing this is with the string-length function. i have found that sometimes comparing an attribute to an empty string returns false if it is null and true if it is an empty string. the string-length returns false if the attribute is missing or if the attribute is &quot;&quot...
  18. mgriffith

    Browser modification

    the core of asp.net lies in server side processing of data....if you'd like to modify the look of a browser window, you will need to investigate javascript or vbscript on the client side. it's true that asp.net renders client side code, but there is nothing built in to alter the look and feel...
  19. mgriffith

    trying to produce w3c valid code....but id tags are invalid

    nevermind, i'm an idiot...all it was was that i needed to specify an id for the control...i got all confused because i'm using this crazy templating scheme, and i forgot a simple underlying principle, and all i needed to do was assign an id property to some string when i dynamically loaded my...
  20. mgriffith

    trying to produce w3c valid code....but id tags are invalid

    any idea on where the clientid prefix comes from?? is the &quot;_ctrl0__&quot; intrinsic to asp.net, or is there some way that i can change it (to something like &quot;ctrl0__&quot; by setting some value somewhere?? anyone?? mike griffith ---------------------------- mgriffith@lauren.com...

Part and Inventory Search

Back
Top