[ActiveLock-Development] CVS: activelock2/src Globals.cls,1.5,1.6
Brought to you by:
ialkan
From: Thanh H. T. <th...@us...> - 2003-07-23 07:04:11
|
Update of /cvsroot/activelock/activelock2/src In directory sc8-pr-cvs1:/tmp/cvs-serv6276 Modified Files: Globals.cls Log Message: Was getting the error "Variable uses an Automation type not supported by Visual Basic" when trying to make ActiveLock2.dll. Index: Globals.cls =================================================================== RCS file: /cvsroot/activelock/activelock2/src/Globals.cls,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Globals.cls 23 Jul 2003 03:55:21 -0000 1.5 +++ Globals.cls 23 Jul 2003 07:04:08 -0000 1.6 @@ -98,7 +98,7 @@ '' ' Returns a new instance of an object that implements IActiveLock interface. ' -Public Function NewInstance(Optional Args As Variant = Empty) As IActiveLock 'TODO: Add parameters as appropriate +Public Function NewInstance(Optional Args As Variant) As IActiveLock 'TODO: Add parameters as appropriate Dim NewInst As IActiveLock Set NewInst = New ActiveLock With NewInst |