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

    Add the selected value of 1 <select> to another?

    How do you add the selected value of one combobox to another I have a form with 2 selects like this: <form id=&quot;form1&quot;> <select id=&quot;countries&quot; onChange=&quot;loadCountry()&quot;> <option value=&quot;France&quot;>France</option> <option value=&quot;UK&quot;>UK</option>...
  2. rychand

    XMLForm - tutorials

    Check out www.w3schools.com for a tutorial on XMLForms. I haven't looked at myself, but i've done a tutorial there before which was pretty good.
  3. rychand

    Loop through child nodes

    how do you loop through child nodes to display the values? For Examle: XML <Store> <Customer> <Name>a</Name> <Age>1</Age> <Address>high street</Address> </Customer> <Customer> <Name>b</Name> <Age>2</Age> <Address>low street</Address> </Customer> </Store> XSL...
  4. rychand

    Retrieve with ASP

    The following code will return all the cube names in a specific OLAP Database <% dim cat dim cube set cat=server.CreateObject(&quot;ADOMD.Catalog&quot;) cat.ActiveConnection=<connectionstring> for each cube in cat.CubeDefs Response.Write &quot;<tr><td colspan=2>&quot; & cube.Name &...

Part and Inventory Search

Back
Top