본문 바로가기
WORK/Sotfware

IntToHex

by KANG Stroy 2009. 8. 20.
728x90
728x90

declaration

function IntToHex(iValue, Digits: Integer): string;

description

Converts an integer to a string - hex representation.

Digits indicates the minimum number of hexadecimal digits to return.

example

var    i : integer;
    hex15: string;
	
i:=15;
hex15 = IntToHex(i,8);
//hex15='F'
728x90

'WORK > Sotfware' 카테고리의 다른 글

볼란드 excel 제어  (0) 2009.08.25
RS232 통신 프로그램 - 3  (0) 2009.08.24
엑셀에서 특정 열의 타입을 지정해주는법  (0) 2009.08.20
CRC(Cyclic Redundancy Check) 검사  (0) 2009.08.19
16비트 CRC 알고리즘 코드  (0) 2009.08.19

댓글