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

    create xml using a path

    Hi, Can anyone tell me if it's possible to create a xml-document (with any kind of xml-framework) using a path and a value? Something like this: doc.AddElement('person/telephone', '555-23589'); doc.addElement('person/address', 'street 1'); doc.addElement('companyGroup/company/name'...
  2. Triion

    DataProvider many-in-many XML

    Hi, This may be a newbie question, but here goes: My XML is something like this: <persons> <person> <name>XXX</name> <phones> <phone>yyy</phone> <phone>zzz</phone> </phones> </person> <person> ... </person> </persons> Now the question is...
  3. Triion

    making and adding Word-OLE object to DB

    Hi, I need a small vb-program that will read data from Excel and store it in Access-db... Problem being that one field needs to be an Word-OLE-object so that needs to be created first... But I don't know how to do that plus how do you write the SQL-query then for inserting the data? My feable...
  4. Triion

    rounding number to a half

    well, What I would like to have is a function that would round to the nearest number with a 1 or a 5 in it... well 0.003 should infact become 0.005 If the number is a large number like 140 then the .003 doesn't really matter... I need this for making a tickMark scale on an axis... for...
  5. Triion

    rounding number to a half

    Hi, I have a application in which i need to 'round' number to there closest 'clean' number... meaning: number should become 'nice' number 4.3235... -> 4.5 0.0068... -> 0.01 0.0035... -> 0.005 35.2154 -> 35.5 So it's...
  6. Triion

    LIKE '[0-9]%'

    Hi, I want to make a catalog, in which the user can search by the startingletter of the game, A through Z, which is easy with "WHERE column LIKE '$letter%'" where $letter is PHP for the letter the user has chosen. But There are games that start with a number... I'd like to make a query that...

Part and Inventory Search

Back
Top