SAapi Object : SetSiteSingleParam Method |
Visual Basic |
---|
Public Function SetSiteSingleParam( _ ByVal ParamName As String, _ ByVal ParamValue As String, _ ByVal ParamDescription As String _ ) As String |
Private Sub SetSiteSingleParam() 'The following Visual Basic example sets the properties ' of an existing parameter, the mail format. 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