EsbDeleteUser

既存のユーザーを削除します。

構文

            EsbDeleteUser
             (
            hCtx, userName
            )
ByVal 
            hCtx
                 As Long
ByVal 
            userName
             As String
         
パラメータ説明

hCtx

VB APIコンテキスト・ハンドル。

userName

削除するユーザー名。

備考

呼出し元は、サーバー上で、呼出し元のユーザーと前回の管理者のいずれも削除できません。

戻り値

なし。

アクセス

この関数を使用するには、ログインしたサーバーに対して、呼出し元がユーザーの作成/削除権限(ESB_PRIV_USERCREATE)を持っている必要があります。

         Declare Function EsbDeleteUser Lib "ESBAPIN" (ByVal hCtx As Long, ByVal User As String) As Long

Sub ESB_DeleteUser ()
   Dim sts As long
   Dim User As String   User = "Joseph"   '************
   ' Delete user
   '************
   sts = EsbDeleteUser (hCtx, User) 
End Sub
      

関連トピック