 
			
				17.12.2012, 09:44
			
			
			
		  
	 | 
	
		
		
		
			  | 
			
			
				
				
				 Let Me Show You 
				
				
			 | 
			  | 
			
				
				
					Регистрация: 30.04.2010 
					Адрес: Северодвинск 
					
					Сообщения: 5,426
 
				Версия Delphi: 7, XE5 
					Репутация: 59586 
					    
				 
				
			 | 
		 
		 
		
	 | 
	
	
	
		
			
			
			 
			
		
		
		
		
	Код: 
	var
  f: file of Byte;
  b: Byte;
begin
  if OpenDialog1.Execute then
  begin
    AssignFile(f, OpenDialog1.FileName);
    Reset(f);
    while not Eof(f) do
    begin
      Read(f, b);
      ShowMessage(IntToStr(b));
    end;
    CloseFile(f);
  end;
end; 
  
		
	
		
		
		
		
			
		
		
		
		
	
		
		
	
	
	 |