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: mplbm
  • Order by date
  1. mplbm

    xsl attributes

    The element is a <td>, which doesn't have an attribute for color or forecolor.
  2. mplbm

    xsl attributes

    If this piece of code sets the bgcolor to the value of @StatusColor, <xsl:attribute name="bgcolor"> <xsl:value-of select="@StatusColor" /> </xsl:attribute> why doesn't replacing 'bgcolor' with 'color' or 'forecolor' set the forecolor to the value of @StatusColor?
  3. mplbm

    convert colour image to black and white

    Thanks Kim!
  4. mplbm

    convert colour image to black and white

    Is it possible in Photoshop to take a colour image and convert it to a black and white image? Thanks, Mike
  5. mplbm

    rendering as html

    I can manage to render as PDF, but my code for HTML doesn't work (see below). I don't get an error, but nothing appears when I load the page. Can anybody please help? ReportingService rs = new ReportingService(); rs.Credentials = new System.Net.NetworkCredential("****", "****"...
  6. mplbm

    reporting services rendering as html

    I can manage to render as PDF, but my code for HTML doesn't work (see below). I don't get an error, but nothing appears when I load the page. Can anybody please help? ReportingService rs = new ReportingService(); rs.Credentials = new System.Net.NetworkCredential("****", "****", "")...
  7. mplbm

    extract year from date

    Sorry, I meant how do you get the full date i.e. dd/mm/yyyy, removing just the time. How do I do this?
  8. mplbm

    extract year from date

    How do you extract the year from a datetime field? Thanks, Mike
  9. mplbm

    escape characters

    Sorry, the code snippet wasn't meant to include the <% %> within it. Here is the bit of code I am working with : response.write "<tr>" &_ "<td bgcolor=eeeeee><a href=""company.asp?company=rs("companyKey")" & "orderby=name"">"&naym&"</a></td>
  10. mplbm

    escape characters

    I need to put the following code within a <% %> block : <td bgcolor=eeeeee><a href='company.asp?company=<%=rs("companyKey")%>&orderby=name'><%=naym%></a></td> How do I escape the characters " etc? Thanks, Mike
  11. mplbm

    checking for nulls

    If you are reading a field from a database in a loop and then adding the value in the field to a variable, how do you test that the value is not null before adding it? Thanks, Mike
  12. mplbm

    Book recommendations

    I am looking for an XSLT book that covers XSLT, XPath etc, and also covers using .NET/C# along with them. Can anybody recommend a suitable book? Thanks, Mike
  13. mplbm

    xhtml newbie question

    I'm using tables for layout...I know I should eventually learn how to do the layout in CSS, but at the moment I have too many other new things to learn... Thanks, Mike
  14. mplbm

    xhtml newbie question

    This doesn't seem a very useful step forward for HTML, if this is how you are now supposed to set td width...it's not something you would want to put in a css file because you could have many td's all with different widths on just one page. Why is it necessary to use style="width:100px;" instead...
  15. mplbm

    xhtml newbie question

    According to the validator in VS 2005, width is no longer a valid attribute for <td>. What do you need to use instead? Thanks, Mike
  16. mplbm

    xhtml newbie question

    The elements I am using "width" with in the project are td and table. Thanks, Mike
  17. mplbm

    xhtml newbie question

    I've just started to use VS 2005 and am trying to make an old project XHTML compliant. What is the replacement for the attributes bgcolor and width, and the element font? Are they meant to be replaced by CSS? Thanks, Mike
  18. mplbm

    help with animation

    How do you do something like this animation? http://www.animationfactory.com/sales/video_tech_loops.html Any ideas would be really appreciated. Cheers, Mike
  19. mplbm

    order by question

    If I have a field with different string values and I want to return data ordered depending upon the value of that string, how would I do that? E.g. I have 3 possible string values for the field called 'ME', 'NY' and 'SC' and I want to order the results first by 'NY', then by 'SC' and then 'ME'...

Part and Inventory Search

Back
Top