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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to see the properties and methods list in Interdev6.0?

Status
Not open for further replies.

Fursten

Programmer
Dec 27, 2000
403
PT
Hi,

Can someone tell me how can I see the list of properties and methods from, for exemple, the XML DOM?

For instance, if I make:

Set doc = XmlIsland.XMLDocument
Set rootNode = doc.documentElement ---> when I make "doc." shouldn´t I see the list of properties and methodos of the doc object?

Thank you :)
 
you have to create the object before you will see the intellisense. i think that is what you are talking about.

try this
<%
dim objDOM
Set objDOM = server.createobject(&quot;MSXML2.DomDocument&quot;)
'or if you don't have MSXML3.0 parser
'Set objDOM = server.createobject(&quot;Microsoft.XMLDOM&quot;)
'you might have to set a reference to the object
'project menu, project reference, then check microsoft XML
'then when you use the object the methods and props
'will display.
objDOM.{list of properties and methods}

hope that helped.

VBBoB BoB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top