whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

35 Visitors Online


 
...convert an Integer to an octal number?
Autor: Katja Hoffmann
Homepage: http://www.katjahoffmann.gmxhome.de
[ Print tip ]  

Tip Rating (7):  
     


function IntToOct(Value: Longint; digits: Integer): string;
var
  
rest: Longint;
  oct: string;
  i: Integer;
begin
  
oct := '';
  while Value <> 0 do
  begin
    
rest  := Value mod 8;
    Value := Value div 8;
    oct := IntToStr(rest) + oct;
  end;
  for i := Length(oct) + 1 to digits do
    
oct := '0' + oct;
  Result := oct;
end;


 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners