I've set the bell off in every way I can think of, and this messagebox() function still sounds it when it pops up ---
Is this a Windows thing that VFP can't suppress?
Thanks
Code:
LOCAL lnSomeThing as Number
SET BELL off
lnSomeThing=MESSAGEBOX('"Yes" to do something. "No" to do something else',4+16,"Do something?")
IF lnSomeThing=6
** do something
ELSE
** do something else
ENDIF
Is this a Windows thing that VFP can't suppress?
Thanks