Initializes the structure for group management (
HGroup) with the default values.
// Describe the connection
HDescribeConnection("MyConnection", "Julia", "Password", "MyHFServer", "MyDatabase", ...
hAccessHFClientServer, hORead)
// Open the connection
HOpenConnection("MyConnection")
...
HResetGroup()
// Characteristics of the new group
HGroup.Name = "ADMIN2"
HGroup.Description = "Database administrators"
HGroup.Users = "Flo" + CR + "Julia"
// Add the user
IF HAddGroup("MyConnection") = True THEN
Info("Group added")
END
Syntax
<Result>: Boolean
- True if the initialization was performed,
- False if a problem occurs. HErrorInfo returns more details.
Business / UI classification: Business Logic