GetAttributeNames Method
Syntax
CWData.GetAttributeNames ()
Return Type
Purpose
Returns the names of the attributes on the CWData object.
Example
'Print the names of the attributes.
v = CWDataSocket1.Data.GetAttributeNames
For i = LBound(v) To UBound(v)
Text1.Text = Text1.Text + " " + v(i)
Next i