ArcFM Responder Mobile Developer Guide
ConfiguratorResolve Event (ArchiveDb)






Occurs when the Configurator property is accessed for the first time.
Syntax
'Declaration
 
Public Event ConfiguratorResolve As ArchiveDb.ConfiguratorResolveEventHandler
'Usage
 
Dim instance As ArchiveDb
Dim handler As ArchiveDb.ConfiguratorResolveEventHandler
 
AddHandler instance.ConfiguratorResolve, handler
public event ArchiveDb.ConfiguratorResolveEventHandler ConfiguratorResolve
public event ConfiguratorResolve: ArchiveDb.ConfiguratorResolveEventHandler; 
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event ArchiveDb.ConfiguratorResolveEventHandler* ConfiguratorResolve
public:
event ArchiveDb.ConfiguratorResolveEventHandler^ ConfiguratorResolve
Remarks
Any program that wants to use the RxDb class must connect to this event and return an instance of the DataSetConfig (configurator) that the RxDb class should use. How you obtain the Configurator varies depending on the application. For example, Responder Explorer executes the ConfiguratorRequest object to ask DataServices for this information. However, DataServices simply loads the information out of a file or the enterprise configuration data store. Caution: The handler of this event must not use the RxDb class because this will cause re-entrancy. If you want to modify the configurator when it is created, but want to also add dynamic domains then you must do so in response to the ConfiguratorTransform event.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ArchiveDb Class
ArchiveDb Members

Send Feedback