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: *

  1. otalens

    How to get an item of a dblookuplist at mouseover?

    A lookupcontrol does not have a text property. Even if it should have one, it would only return the selected item. Regards, Oliver Talens ***************************** Abyss I.T. Solutions Mathildastraat 36B 4901 HC Oosterhout http://www.Abyss.nl http://www.PanelPoint.nl tel: +31...
  2. otalens

    How to get an item of a dblookuplist at mouseover?

    I can get the control. That is not the problem. The problem is how to get the Item within the control... Regards, Oliver Talens ***************************** Abyss I.T. Solutions Mathildastraat 36B 4901 HC Oosterhout http://www.Abyss.nl http://www.PanelPoint.nl tel: +31 (0)162-439809 fax...
  3. otalens

    XSL / for-each: where 2 values are matched...

    Have you tried: select="info/article[type$eq$'News'||type$eq$'Urgent']" etc. Regards, Oliver Talens ***************************** Abyss I.T. Solutions Mathildastraat 36B 4901 HC Oosterhout http://www.Abyss.nl http://www.PanelPoint.nl tel: +31 (0)162-439809 fax: +31...
  4. otalens

    Insert an image

    This is one way. Maybe not the coolest, but it works: <xsl:text disable-output-escaping=&quot;yes&quot;> <img border=&quot;0&quot; src=&quot;test.jpg&quot;> </xsl:text> Regards, Oliver Talens ***************************** Abyss I.T. Solutions Mathildastraat 36B 4901 HC Oosterhout...
  5. otalens

    XML and SQL server (standards)

    It depends. If the XML structure is one-on-one like the database tables, you can send it as one large string to SQLServer, but there are length limitations . It is nicer to cut the XML string in logical parts and send that to the DB. Good luck. Regards, Oliver Talens...
  6. otalens

    How to get an item of a dblookuplist at mouseover?

    Hi, I want to get the item of a dblookuplist to show in a statusbar or Hint at the moment I move the cursor over the control. I was able to do it using other controls like TListbox, TCombobox and TDBListbox, but I can't get it to work for lookup controls. The code I use for the other controls...
  7. otalens

    XML and SQL server

    Take a look at the help available in SQL-server. Start using the MSXML3 parser. You can download this from the Microsoft site. There are plenty good examples on the internet, but look ate the name spaces!!! For use of the MSXML3 parser you need the following name space: <xsl:stylesheet...
  8. otalens

    XML in Netscape

    Use the Microsoft MSXML3 parser. This enables you to use the new W3C conventions: set XMLObject = Server.CreateObject(&quot;Msxml2.DOMDocument&quot;) ' set up the output stream that will receive the output of the command execute cmd.Properties(&quot;Output Stream&quot;) = XMLObject...
  9. otalens

    Unescape in SQL Server 2000

    Hi, I had some problems unescaping data retrieved from an internet page in SQL Server. While SQLServer 2000 has the possibility to create User-defined functions, I created two functions to unescape a string like '%200test%205' before inserting it into the database. I hope this will help some...
  10. otalens

    Best way to capture an attribute XML???

    Just use the getAttribute method. For example childNodes.Item(j).getAttribute(&quot;Speciality&quot;) Regards, Oliver Talens ***************************** Abyss I.T. Solutions Mathildastraat 36B 4901 HC Oosterhout http://www.Abyss.nl http://www.PanelPoint.nl tel: +31 (0)162-439809 fax: +31...
  11. otalens

    xml/sql

    Neil, I don't think there is a plugin for SQL7. Sql2000 does support XML and it works great! Regards, Oliver Talens ***************************** Abyss I.T. Solutions Mathildastraat 36B 4901 HC Oosterhout http://www.Abyss.nl http://www.PanelPoint.nl tel: +31 (0)162-439809 fax: +31...
  12. otalens

    display xml content in html

    Use the <xsl:value-of select=&quot;@Fieldname&quot;/> tag.
  13. otalens

    how to transform dbf file to xml

    ant, It depends what database you want to format. For example SQL Server 2000 has some standard procedures for exporting and importing XML data. Most &quot;Old&quot; databases doesn't have standard functionality so you will have to write some conversion functions yourself. I think DBase doesn't...

Part and Inventory Search

Back
Top