Programming problem for remote control

I changed the DEC HEX, but I do not understand it 0xNNNNNNNN, you can specify it please!

Not really, since you won't show any serial output.

Suppose, when you press button 4 on the remote, this shows up in the Serial Monitor:

A4B294F1

Then, you would add something like this to your code:

if(results.value == 0xA4B294F1)
{
   // Do whatever button 4 is supposed to trigger
}

Suppose button 5 output

36D1F4E7

Then, you could have code like:

if(results.value == 0xA4B294F1)
{
   // Do whatever button 4 is supposed to trigger
}
else if(results.value == 0x36D1F4E7)
{
   // Do the button 5 stuff
}