I'm trying to send a USSD code for example *1411#
but the problem is the #
symbol gets removed and the phone will dial to *1411
not *1411#
if Assigned(PhoneDialerService) then
begin
if edtCardNumber.Text <> '' then
PhoneDialerService.Call('*1411#')
else
ShowMessage('Error');
end;
If the PhoneDialerService.Call
can't send USSD code what alternative do I use instead?