|  | 
			
				| Sets exclusive access on or off | 
			
				|  | 
			
				| 
						
							|  | VARIANT_BOOL SetExclAccess ( VARIANT_BOOL bSet
 )
 |  | 
			
				|  | 
			
				| 
						| Parameters |  | bSet |  | [in] True if you want to set exclusive access to the interface, false if you want to remove exclusive access. |  |  |  | Return value |  | True if setting/removing exclusive access to the interface succeeded, otherwise false. |  |  |  | Remarks |  | 
		
	|  | A conflict dialogue is shown when a conflict occurred setting the exclusive access, except when the application was started without user interface (see parameter bWithUserInterface in the Logon method.). |  |  | If this method is called twice with the same value for bSet an exception is thrown. |  |  
							|  |  
							| See Also |  
							|  |  | 
			|  | 
			| Samples | 
			|  | 
			
				| 
						
							|  | C++ |  
							|  | if (pArtWrh->SetExclAccess (VARIANT_TRUE))
 {
 // Execute necessary code
 
 pArtWrh->SetExclAccess (VARIANT_FALSE);
 }
 
 
 |  | 
			
				| 
						
							|  | C# |  
							|  | if (oArtWrh.SetExclAccess (true))
 {
 // Execute necessary code
 
 oArtWrh.SetExclAccess (false);
 }
 
 
 |  | 
			
				| 
						
							|  | VBS |  
							|  | If oArtWrh.SetExclAccess(True) Then
 ' Execute necessary code
 
 Call oArtWrh.SetExclAccess(False)
 End If
 
 
 |  | 
			
				| 
						
							|  | VB.NET |  
							|  | If oArtWrh.SetExclAccess(True) Then
 ' Execute necessary code
 
 oArtWrh.SetExclAccess(False)
 End If
 
 
 |  |