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 Mike Lewis 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. FhHouse

    Filtering Result with dynamic value?

    I was able to get it by putting the CategoryID into an attribute of the Item <Item CategoryID=&quot;2&quot;>, since it is the only attribute I can access it without knowing what it is, so this works unless I need to have more than this 1 attribute. <xsl:template...
  2. FhHouse

    Filtering Result with dynamic value?

    I have a list full of items, each item has a categoryid, i want to filter the list of items by the categoryid in my xsl code, I can do this if i specify what my category id is, but i wanted to try and make it generic, don't know if that makes sense, but please look at the code below. I am...
  3. FhHouse

    MDX query trouble, need SQL type WHERE

    I found out how, if any one cares I needed to use the Aggregate() function WITH Member [Product].[myAgg] AS 'Aggregate ( { [Product].[Food].[Baking Goods].[Jams and Jellies].[Jam].[Super], [Product].[Food].[Baking Goods].[Jams and Jellies].[Jam].[Plato] } ) then in the where clause WHERE (...
  4. FhHouse

    MDX query trouble, need SQL type WHERE

    I have only done basic queries using MDX and now I am in a spot of trouble. I am trying to query data from a cube and want the data returned to be based on elements that do not appear in the result set. I have made a similar query against the Foodmart cube. This one works SELECT {...
  5. FhHouse

    Running MDX Queries from Query Analyzer

    goto start > Program files > Microsoft SQL > Analysis Services > MDX Sample Application. This program allows you to make queries against the cube, like query analyser.
  6. FhHouse

    NS and IE

    This is not exactly the same, but should work in both. This one loads in a whole new array each time you make a selection from the parent select menu. <html> <head> <title></title> <script language=&quot;JavaScript&quot;> <!-- function LoadDependent() { var nSelect =...
  7. FhHouse

    forcing a window size

    you can embed this in your new page, <body onLoad=&quot;window.resizeTo(200, 200);&quot;> but it seems to have different results in Netscape and IE. better yet, don't use target=&quot;_blank&quot; use <a href=&quot;javascript:;&quot...
  8. FhHouse

    embedding javascript in HTML

    <a href=&quot;javascript:;&quot; onClick=&quot;window.open('about.asp','FILE','width=660,height=500,scrollbars=yes,resizable,toolbar,location')&quot; >Click Here</a>
  9. FhHouse

    connecting to databases

    JavaScript is for client side scripting (Browsers). Any database activity is going to take place on the server. If your server is Linux/Unix you will need to use something like PHP or Perl. If your server is Windows you can use ASP. You can use either VBScript or JavaScript to write asp code...
  10. FhHouse

    Pop Open Window Problems

    I don't think you need newPop = That is how vbscript returns values from functions, not javascript try function newPop(){ window.open('flash/acctsel.swf','newWin','width=550,height=405') } if that is not it try <a href=&quot;javascript:;&quot; onClick=&quot;newPop();&quot;>Click here</a>...
  11. FhHouse

    Closing pop-window in Netscape delay

    I have a pop-window which is a form. it calls an asp page which performs an update to a db. then outputs the following html. Which should close the pop-up and refresh the opening window. <html> <head> <script language=&quot;Javascript&quot;> function ManipulateWindows() {...
  12. FhHouse

    Question about linking the .js file

    Are you using </script> ? <script language=&quot;JavaScript&quot; src=&quot;scripts/filename.js&quot;></script> just an idea
  13. FhHouse

    how to remove all item ?

    Try this for (var i=document.forms[0].Sel_cond.options.length-1; i>=0; i--) { document.forms[0].Sel_cond.options[i] = null; } document.forms[0].Sel_cond.selectedIndex = -1;
  14. FhHouse

    guys i need to know..

    I don't think so.
  15. FhHouse

    Delete Contents of Dynamic Select box

    function ClearCombo() { for (var i=document.FormName.SelectName.options.length-1; i>=0; i--) { document.FormName.SelectName.options[i] = null; } document.FormName.SelectName.selectedIndex = -1; }
  16. FhHouse

    open window in ie5 = cool open window in ns4 = nothing

    I always use this for new windows <a href=&quot;javascript:;&quot; onClick=&quot;window.open('filename.asp','FILE','width=660,height=500,scrollbars=yes,resizable,toolbar,location')&quot; >Click here</a>

Part and Inventory Search

Back
Top