Use this method to code your relationship AU task. This can contain code to perform any task that you want to assign to a relationship event.
            
            
            
    The following code sample demonstrates how the IMMRelationshipAUStrategy::Execute method may be implemented.
    
        
            
                | Visual Basic |  Copy Code | 
            
                | 
                        
                            
                                
                                    | Private Sub IMMRelationshipAUStrategy_Execute (ByVal pRelationship As IRelationship, ByVal eAUMode As mmAutoUpdaterMode, ByVal eEvent As mmEditEvent)If pRelationship Is Nothing Then Exit Sub
 If eAUMode = mmAUMNoEvents Or eAUMode = mmAUMNotSet Then Exit Sub
 
 Dim pDS As IDataset
 Set pDS = pRelationship
 
 MsgBox "Relationship AU strategy operating on " _
 & pDS.Name & " relationship class",, "Sample Relationship AU"
 End Sub
 |  | 
        
    
Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)
Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.