Alert with sound

Created at 23 May 2025, 11:57
JA

javid.pnd

Joined 27.01.2023

Alert with sound
23 May 2025, 11:57


Hi,I created indicator with alert pop up and sound ,but it doesnt make sound ,can anyone please share the correct code i have to use .Thanks


@javid.pnd
Replies

firemyst
25 May 2025, 12:22

This definitely works using .NET 6 as I have it in my code:

 

System.Media.SystemSounds.Exclamation.Play();
System.Media.SystemSounds.Asterisk.Play();
System.Media.SystemSounds.Beep.Play();
System.Media.SystemSounds.Hand.Play();
System.Media.SystemSounds.Question.Play();

@firemyst