Private Sub DeleteSiteSingleParam() 'The following Visual Basic example deletes a parameter ' from the site. Dim sReply As String On Error GoTo err sReply = m_SAClient.DeleteSiteSingleParam _ ("MaxReqsPerBranch") MsgBox sReply Exit Sub err: MsgBox "Program failed:" + err.Description End Sub