using this simple code you can have the size of your client area in pix function getScreenSize() { var w = window, d = document, e = d.documentElement, g = d.getElementsByTagName(‘body’)[0], x = w.innerWidth || e.clientWidth || g.clientWidth, y = w.innerHeight|| e.clientHeight|| g.clientHeight; return x + ‘px ‘ + y + ‘px’; } window.addEventListener(‘resize’,);
select PK_ID from USERS start with FK_USER_PARENT = PK_USER connect by prior PK_ID = FK_USER_PARENT;
int2hex example in delphi: var str : string; // hex value b : byte; begin b := 15; str := system.sysutils.inttohex(b,2); end; // the result in str will be : ‘0F’ hex2int example: var strHexVal : string; // hex value intVal : integer; begin strHexVal := ‘0F’; intVal := StrToInt(‘$’ + strHexVal); end; // the…
Read more