Hi ,
I am trying to come up with a code which retrieves the inactive/active users in a project.
Here is my code for activating a customizationusers object
Set usr = QCConnection.Customization
Set usr1 = usr.Users
Set usr2 = usr1.Users
Debug.Print usr2.Count
Using the above code I am able to get the customizationUsers Object,
I achieved the customizationUsers Object without any declaration like dim x as customizationusers
But i also want a customizationUser Object
I tried the below code for acheiving customizationUser Object,
Set usr = QCConnection.Customization
Set user1 = usr.Users
Set user2= user1.User
But it shows the property or number of arguments is wrong.
I also tried dim Y as customizationUser
But it shows User defined object type not defined .
Can someone please help