The draws work fine....
No alert and no sound.
Can anyone see what i did wrong here?
THANK YOU!!!!
if (BarOfThisAlert != CurrentBar)
{
BarOfThisAlert = CurrentBar;
if (!Historical)
if (SoundAlerts) WriteFile...; DOES OK
if (!Out)
{
DrawArrowUp
DrawText("Text1" + CurrentBar,
DrawText("Text3" + CurrentBar,
DrawText("Text2" + CurrentBar,
DrawText("Text4" + CurrentBar,
if (SoundAlerts) PlaySound(@"c:\air_raid.wav"); NO WORK
if (SoundAlerts) Alert("MyAlrt5", NO WORK
}
else

.
Comment