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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Craftor

  1. Craftor

    Converting Access Forms into web application

    Hi all, I have been asked to investigate whether there is any automated tool to convert MS Access applications into .NET web applications with a SQL backend. I've taken a look at 2 currently on the market - DBForms and Microtools Access Whiz. Both of them handled the data conversion fine but...
  2. Craftor

    Treeview control showing javascript

    Hi all, On my TreeView, the javascript code to expand or collapse the menu items is displaying in the status bar when the user hovers over those images e.g. javascript:TreeView_ToggleNode(ctl00_leftNavigationTreeview_Data... Is there any way to prevent this from displaying? It looks...
  3. Craftor

    Speed - web.config value cached vs. uncached

    Thanks for this jmeckley. Craftor 8-)
  4. Craftor

    Speed - web.config value cached vs. uncached

    Hi all, I'd just like to get your thoughts on what would be faster overall - caching values from the web.config file, or just reading them as required. Caching would obviously add overhead to the server memory but I'm curious as to whether it would give any significant performance gains...
  5. Craftor

    Get most recent date without subquery

    Thanks that's the sort of thing I was looking for! Craftor 8-)
  6. Craftor

    Get most recent date without subquery

    Hi all, Another question on getting a record for the most recent date... I have a list of prices in a table and I need to get the most recent price for a specified item. I've got the following query which correctly brings back the most recent price: select priceID, price_date, price_value...
  7. Craftor

    XML parameter is NULL to indicate all values should be returned

    Hi all, I'm passing a list of values to a stored procedure using an XML parameter. The stored procedure is used to search a table for matching values so this list can contain one or many values, or could be NULL to indicate all values should be returned. How can I phrase my query to cope...
  8. Craftor

    DateTime conversion error when using dynamic SQL

    Thank you for both of your responses. I ended up removing the dynamic SQL and using the ISNULL statement to see whether the parameter passed in is null and, if not, to use that parameter. Thanks as always Craftor 8-)
  9. Craftor

    DateTime conversion error when using dynamic SQL

    Hi everybody, I'm using dynamic SQL in a stored procedure to build up a query that can have a variety of WHERE clauses depending on what parameters are passed into the stored procedure. One of my parameters (a DATETIME) seems to be causing an error: Conversion failed when converting datetime...
  10. Craftor

    Check a range of values to see if they are all zero

    Hi, Thanks for your responses. bborissov's suggestion seems to be the best as it takes my calculated values into account. Thanks as always Craftor 8-)
  11. Craftor

    Check a range of values to see if they are all zero

    Hi everyone, I'm currently doing a calculation in a stored procedure and I need to check if all of my calculated values are zero. I've allocated the values to variables as they are used in various places during the calculations - aside from a massive IF statement, is there an elegant way to...
  12. Craftor

    FORM tag causes line break in Netscape 7.0

    Thanks for both your responses - Vragabond I don't think the span that's causing the break - it just sets the color of the elements in it : .toptoolbar { color: #999999; } Lowet - I tried applying the style elements to the form tag but still got the line break so I've just included all of the...
  13. Craftor

    FORM tag causes line break in Netscape 7.0

    Hi all, I'm encountering a horrible problem with Netscape 7.0 with a line break occurring before a <form> tag. I've got the following HTML: <span class="toptoolbar"> <a href="/search/sitemap.aspx" class="toollink">Site map</a> | <a href="/contact/default.aspx" class="toollink">Contact us</a>...
  14. Craftor

    xsl:attribute not showing

    Thank you tsuji that solved the problem! Craftor 8-)
  15. Craftor

    xsl:attribute not showing

    Hi all, Here is a snippet from my XSL file: <?xml version="1.0" encoding="UTF-8" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" omit-xml-declaration="yes"/> <xsl:template match="mytemplate" xml:space="preserve"> <div>...

Part and Inventory Search

Back
Top