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 strongm 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. colin81

    Get Active Directory SMTP address

    Hi, I am attempting to get a list of all smtp addresses associated with an active directory account. I can successfully query an active directory account to get the 'mail' attribute but this is just a description. The information I need is within the user properties 'email addresses' tab, I...
  2. colin81

    XML Treeview - XML Dom

    jubble : thanks for the code I will give it a try and see how it goes. chiph : I know its possible to select a node using the index in xpath in the xml dom, the problem Im having is mapping from the treeview to the dom...do you know a way of finding the current index of the treenode selected...
  3. colin81

    XML Treeview - XML Dom

    Thanks for the reply....that kinda solves my problem but if I have an xml file as below (I havent included doc prologs etc) <test> <anode>anode text</anode> <aparentofnodes> <node>some data</node> <node>some mode data</node> <aparentofnodes> </test> If I decide I want to...
  4. colin81

    XML Treeview - XML Dom

    Hi All I wish to allow users to ammend a treeview (loaded with daa from an xml doc) which in turn ammends the xml document in the background i.e. ammend the xml dom then write to a file. Is this possible? I cannot seem to find anyway of indexing the selectednode to a node in the xml dom. Many...
  5. colin81

    Returning Friendly System.ArgumentException messages

    Hi All Is it possible to throw a friendly error when a Function is called with the incorrect datatypes or missing values? For example if a user invoked a web method located on a web service which only excepted a value which was of datatype date with a value of 'bob' how could I get a friendly...
  6. colin81

    Input format

    Hi All, Is there anyway to keep data entered within a text area in the same format when being passed from a textarea to another page or persistent storage? An example of my problem would be when a user enters the following into a textarea : Hello, Im Colin Thanks When posted to another...
  7. colin81

    Add nodes to xml document

    Thanks chiph that was really helpful and worked straight away! One further thing can I validate the data input against a schema? A star for you for your efforts! Once again , Many Thanks!
  8. colin81

    Add nodes to xml document

    Is it not possible to traverse a list of nodes within an xml document or append the list of tasks ? I think it is in the xml dom but am unsure how to do it in .net..... tsunami100 : I do not wish to store data within an access database, I wish to write (append) an xml document....no database...
  9. colin81

    Add nodes to xml document

    Hi, Thanks for replying. I wish to add the task from code not manually (plan to do this from a web service). The document does not come from a database, it is just a standard xml document for storing tasks in. if it is possible to validate the xml against a schema from code that would be good...
  10. colin81

    Add nodes to xml document

    Hi All First of all happy new year! Im very new to vb.net and Im struggling to add data to an existing xml document. An example of the document is as below : ----------------------------------------------------------- <?xml version="1.0" encoding="iso-8859-1"?> <tasks> <task >...
  11. colin81

    Using CLOB data in asp pages

    Hi All I am currently writing an asp script to retrieve data from an oracle database and write the values using the response.write method. I am using the 0040 ole provider. This works fine for all fields except fields of the clob (or lob) data types. I then recive the following message ...
  12. colin81

    Sql Like statement to ignore case

    Thank you both for your very quick replies, I am indeed using oracle and using the UPPER() function worked immediately.
  13. colin81

    Sql Like statement to ignore case

    Hi all Is there a way to use a like statement within a where clause to ignore case. As at present when I query a db it only finds the records if the case is matched also. I.e SELECT * FROM tbl WHERE myfield LIKE '%SMITH%' Will only pull back SMITH when I want it to find smith SmiTH etc as...
  14. colin81

    4 Table query

    Thanks for all your help thats worked ! Colin
  15. colin81

    4 Table query

    Hi PHV Thanks for reply The query you submitted to me works in part in the way that it will match a lev_code with a record in the tblPOL_POLL_AMT table but it creates three entries for each record like below pol_value pol_desc lev_desc --------- -------- -------- 2 sulphur med...
  16. colin81

    4 Table query

    Hi all I need help with a query involving 4 tables. The sql needs to be able to be executed from an asp page. I have the following tables : tblPollutant pol_code pol_desc -------- -------- 1 co2 2 sulphur tblPolLevels lev_code lev_desc -------- -------- 1 Low 2...
  17. colin81

    Oracle asp 0040 connection problems

    Thanks for your reply that worked straight away. Once again many thanks for your help Colin
  18. colin81

    Oracle asp 0040 connection problems

    Hi All I am currently experiencing problems connecting to an oracle database using the below in an asp page : <%@Language="vbscript"%> <%Option Explicit%> <% Dim OraSession Dim OraDatabase Dim OraDynaset Set OraSession = Server.CreateObject("OracleInProcServer.XOraSession")...
  19. colin81

    Conecting to an oracle database using 0040 ole

    Hi All I am currently experiencing problems connecting to an oracle database using the below in an asp page : <%@Language="vbscript"%> <%Option Explicit%> <% Dim OraSession Dim OraDatabase Dim OraDynaset Set OraSession = Server.CreateObject("OracleInProcServer.XOraSession") Set...
  20. colin81

    Redimensioning a multidimensional array

    Many Thanks for your help guys, its worked a treat. Ive given a star to both of you for your troubles!

Part and Inventory Search

Back
Top