Private Sub SetSiteSingleParam()
'The following Visual Basic example sets the properties
' of an existing parameter.
Dim sReply As String
On Error GoTo err
sReply = m_SAClient.SetSiteSingleParam("MAIL_FORMAT", _
"HTML", "The mail format ")
MsgBox sReply
Exit Sub
err:
MsgBox "Program failed:" + err.Description
End Sub