|   | 
			
			
				| Browses the file for a Commodity Code card. | 
			
			
				|   | 
			
			
				
					
						
							  | 
							BSTR Browse () | 
						 
					 
				 | 
			
			
				|   | 
			
			
				
					
						| Return value |  
| A BSTR containing the code of the selected record, blank if no record was selected. |  |   |  | 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 selected using the browse dialog. |  
	  |  
						
							|   | 
						 
						
							| See Also | 
						 
						
							| 
								
							 | 
						 
					 
				 | 
			
			|   | 
			| Samples | 
			|   | 
			
				
					
						
							  | 
							C++ | 
						 
						
							|   | 
							
 CString strCode = pComCd->Browse ();
 
  | 
						 
					 
				 | 
			
			
				
					
						
							  | 
							C# | 
						 
						
							|   | 
							
 string strCode = oComCd.Browse ();
 
  | 
						 
					 
				 | 
			
			
				
					
						
							  | 
							VBS | 
						 
						
							|   | 
							
 Dim sCode
 sCode = oComCd.Browse()
 
  | 
						 
					 
				 | 
			
			
				
					
						
							  | 
							VB.NET | 
						 
						
							|   | 
							
 Dim sCode As String
 sCode = oComCd.Browse()
 
  | 
						 
					 
				 |