EsbCreateUser

新規ユーザーを作成します。

構文

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

hCtx

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

userName

作成するユーザーの名前。ユーザー名の制限を参照してください。

Password

新規ユーザーのセキュリティ・パスワード。パスワードの制限を参照してください。

備考

戻り値

なし。

アクセス

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

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

Sub ESB_CreateUser ()
   Dim sts As Long
   Dim User As String
   Dim Password As String   User = "Joseph"
   Password = "Password"   '************
   ' Create user
   '************
   sts = EsbCreateUser (hCtx, User, Password) 
End Sub
      

関連トピック