AddDateTime Method
See Also Example Applies To
Adds an XMLRPCMember object containing a name and a date and time to the object.
Syntax
object.AddDateTime (name, value)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCStruct object. |
| name |
Required. A string which is the name of the value to add. |
| value |
Required. Date to be appended to the XMLRPCStruct object. |
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCStruct ' The Struct to be added to
X.AddDateTime "Example", Now
|