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