hi,

> I hear strange and little beep, like rumor of speaker broken
> (Samsung notebook)
> In another model (HP notebook) i hear nothing.

>> start up your Sound Mixer and play with Master Volume.
 
 
if you open Speaker Icon you will see Master  Volume only.
if you click on MIXER you should see this
 
Anwendungen == Application
greetings by OHR
Jimmy
p.s. here a Sound to test
 
PROCEDURE MAIN
    HAPPY()
RETURN
 
PROCEDURE HAPPY()
LOCAL i, nMax
LOCAL aTONE := { { 1047 ,  4  } ,;
                 { 1047 ,  4  } ,;
                 { 1175 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1047 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1397 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1319 ,  16 } ,;
                 {    0 ,  2  } ,;
                 { 1047 ,  4  } ,;
                 { 1047 ,  4  } ,;
                 { 1175 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1047 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1568 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1397 ,  16 } ,;
                 {    0 ,  2  } ,;
                 { 1047 ,  4  } ,;
                 { 1047 ,  4  } ,;
                 { 2093 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1760 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1397 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1319 ,  8  } ,;
                 {    0 ,  1  } ,;
                 { 1175 ,  16 } ,;
                 {    0 ,  2  } ,;
                 { 1865 ,  6  } ,;
                 { 1865 ,  6  } ,;
                 { 1760 ,  11 } ,;
                 {    0 ,  1  } ,;
                 { 1397 ,  11 } ,;
                 {    0 ,  1  } ,;
                 { 1568 ,  11 } ,;
                 {    0 ,  1  } ,;
                 { 1397 ,  21 } ,;
                 {    0 ,  3  }   }
 
   nMax := LEN(aTONE)
   FOR i = 1 TO nMax
      TONE(aTONE[i][1],aTONE[i][2])
   NEXT
RETURN