Ok, it?s work. I will describe what i did to help other user.
procedure TFrmPrincipalBluetooth.wclProximitySenderConnected(Sender: TObject;
Device: TwclBluetoothDevice; Result: Cardinal);
var
ResultadoHex: string;
ResultadoInt: Integer;
begin
ResultadoHex := IntToHex(Result, 8);
if ResultadoHex = '00000000' then
ShowMessage('Accept')
else
ShowMessage('Not accept');
end;