|  | 
			
				| Views an Article Supplier card. | 
			
				|  | 
			
				| 
						
							|  | void View () |  | 
			
				|  | 
			
				| 
						| Remarks |  | 
		
	|  | This method can only be used if user interface is allowed (parameter bWithUserInterface is set to true in the Logon method), because a record can only be viewed using the dialog. |  |  
							|  |  
							| See Also |  
							|  |  | 
			|  | 
			| Samples | 
			|  | 
			
				| 
						
							|  | C++ |  
							|  | // View the last inserted record
 if (pArtSup->SeekBySysNum (smLast, 0))
 pArtSup->View ();
 
 
 |  | 
			
				| 
						
							|  | C# |  
							|  | // View the last inserted record
 if (oArtSup.SeekBySysNum (eSeekMode.smLast, 0))
 oArtSup.View ();
 
 
 |  | 
			
				| 
						
							|  | VBS |  
							|  | ' View the last inserted record
 If oArtSup.SeekBySysNum(smLast, 0) Then
 Call oArtSup.View()
 End If
 
 
 |  | 
			
				| 
						
							|  | VB.NET |  
							|  | ' View the last inserted record
 If oArtSup.SeekBySysNum(eSeekMode.smLast, 0) Then
 oArtSup.View()
 End If
 
 
 |  |