|
|
|
|
<Connection variable>.DeleteGroup (Function) In french: <Variable Connexion>.SupprimeGroupe
Available only with this kind of connection
Deletes (from the server) a group of users associated with a connection.
// Describe the connection MyConnection is Connection // Open the connection MyConnection.OpenConnection() // Associate the data file with the connection Customer.ChangeConnection(MyConnection) ... IF MyConnection.DeleteGroup("User1") = True THEN Info("User1 group deleted") END
Syntax
<Result> = <Connection>.DeleteGroup(<Group>)
<Result>: Boolean - True if the group was deleted,
- False if an error occurred. HErrorInfo is used to identify the error.
Remark: HErrorInfo will return an "Unknown group" error if the current user has no rights to see the users ( hRightsSeeUser constant) and wants to delete another group.
<Connection>: Connection variable Name of the Connection variable that describes the connection for which a group must be deleted. <Group>: Character string Name of group to delete.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|