Hi everybody!
How I can avoid a sound if a press space bar in xbrowse, I use space to check and uncheck the first col.
Thanks in advance
Hi everybody!
How I can avoid a sound if a press space bar in xbrowse, I use space to check and uncheck the first col.
Thanks in advance
ukoenig wrote:You can try with any key :
oBrw:bKeyDown := { | nKey | ( nRPos := RECNO(), ; // record-pos if needed
nCPos := oBrw1:SelectedCol():nCreationOrder, ; // selected col
IIF( nCPos = 1 .and. nKey == 13, ; // Sound on EDIT only on column 1
SndPlaySound( c_Path1 + "Alert.wav", 0 ), NIL ) ) }
regards
Uwe
On my system, I can not hear MsgBeep(). So I am unable to check where the sound is coming from.
In any case if you SET BELL OFF initially, I guess you may not hear any MsgBeep()s. Can you please try that?
Hi,
My request is avoid beep sound in Msgxxxx functions.
I have tried SET BELL OFF. But no success.
Any comment?
Thanks.