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 wOOdy-Soft 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 ferra

  1. ferra

    Can you can DLL's with VBSx?

    Simply use createobject, look in the references from Microsoft.
  2. ferra

    How to sum duplicates in a table?

    select part,sum(quantity),count(part) from partsdatabase group by part having count(part) > 1
  3. ferra

    How do i hide the query source (design)

    Does anybody have any ideás how to hide a query source from other users then the administrator ? Tried give the users only run permission, but i cant refuse them to see the query design ![yinyang]
  4. ferra

    Dynamic XSL

    This is what you are looking for... Dim xslt As New Msxml2.XSLTemplate Dim xslDoc As New Msxml2.FreeThreadedDOMDocument Dim xmlDoc As New Msxml2.DOMDocument Dim xslProc As IXSLProcessor xslDoc.async = False xslDoc.Load "sample.xsl" Set xslt.stylesheet = xslDoc xmlDoc.async = False...

Part and Inventory Search

Back
Top