Dim UserPrivileges Set UserPrivileges = CreateObject("UserManager.UserPrivileges") UserPrivileges.SomeMethod SomeParameters UserPrivileges.SomeProperty = SomeValue
You can also use CreateObject method method of Server object (ASP) to put the UserPrivileges object to page scope or CreateObject method of WScript object in WSH.
You can also put the object to Application or Session scope using <object ...> tag in global.asa
<object runat="server" scope="application" id="UserPrivileges" progid="UserManager.UserPrivileges"> </object>
Please use ActivexObject object in JScript/JavaScript to create UserPrivileges object:
var UserPrivileges; UserPrivileges = new ActiveXObject("UserManager.UserPrivileges"); UserPrivileges.SomeMethod(SomeParameters) UserPrivileges.SomeProperty = SomeValue ...
VBA 5/6: You can reference the library using menu Project -> References
-> select 'ActiveX UserManager 1.7' in the listbox (or Project ->
References -> Browse -> select UserMan.OCX file).
MSAccess, Word, Excel: Tools -> Macro -> Visual Basic Editor, then Tools
-> References
Then you can write:
Dim UserPrivileges As New UserManager.UserPrivileges UserPrivileges.SomeMethod SomeParameters UserPrivileges.SomeProperty = SomeValue ...or
Dim UserPrivileges As UserManager.UserPrivileges ... Set UserPrivileges = New UserManager.UserPrivileges UserPrivileges.SomeMethod SomeParameters UserPrivileges.SomeProperty = SomeValue ...You can use CreateObject function also, of course:
Dim UserPrivileges As UserManager.UserPrivileges ... Set UserPrivileges = CreateObject("UserManager.UserPrivileges") UserPrivileges.SomeMethod SomeParameters UserPrivileges.SomeProperty = SomeValue ...
You can reference the library using menu Project -> Add reference -> COM tab -> select 'ActiveX UserManager 1.7' in the listbox -> click Select. Then you can write (C#, J#):
//create a new UserPrivileges objector (VBA)
UserManager.UserPrivileges UserPrivileges = new UserManager.UserPrivilegesClass();
UserPrivileges.set_String("Some text value");
String SQL;
SQL = "Insert Into Table (BinaryColumn) values (0x" + UserPrivileges.get_HexString() + ")"; ...
Dim UserPrivileges As New UserManager.UserPrivileges UserPrivileges.SomeMethod(SomeParameters) UserPrivileges.SomeProperty = SomeValue
DECLARE @UserPrivileges INT, @OLEResult INT EXECUTE @OLEResult = sp_OACreate 'UserManager.UserPrivileges', @UserPrivileges OUT IF @OLEResult <> 0 PRINT 'Error create component UserPrivileges' --Set a property of UserPrivileges. EXECUTE @OLEResult = sp_OASetProperty @UserPrivileges, 'PropertyName', @SomeSQLValue IF @OLEResult <> 0 PRINT 'PropertyName set problem' --Get a value of a property of UserPrivileges. EXECUTE @OLEResult = sp_OAGetProperty @UserPrivileges, 'PropertyName', @SomeSQLValue OUTPUT IF @OLEResult <> 0 PRINT 'PropertyName get problem' --Call some method of UserPrivileges. EXEC @OLEResult = sp_OAMethod @UserPrivileges, 'MethodName', @ReturnValue OUTPUT, @parameter1, @parameter2
© 1996 - 2009 Antonin Foller, Motobit Software | About, Contacts | e-mail: info@pstruh.cz