In the Classic Client we had the C/AL command BEEP to sound an alert to the user. This function is not supported in the Role Tailored Client.
Here we have a solution in .NET.
[code]IF ISSERVICETIER THEN
Console.Beep
ELSE
BEEP(1000,300);[/code]
Where Console is a RunOnClient DotNet variable ‘mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089’.System.Console
Love your work!
Thank You ! I used it today