Wyupdate beeps when updates foundSolved

Hello,here's the code i use for calling the update from a module while closing itself:

Dim checkUpdates As Process = Process.Start("wyupdate.exe", "-quickcheck -justcheck -noerr -server="&servername) checkUpdates.WaitForExit() If checkUpdates.ExitCode= 2 Then Process.Start("wyupdate.exe", "-quickcheck -server="&servername) Exit Sub End If

the problem is that every time there are new updates found, I get two "message box type" beeps. For every time wyupdate process is called. If there are no updates or there is error in connection, there's no beep at all.

So is it possible to supress this sound?

Thank youregards,johny

I can't reproduce this behavior. Try calling wyUpdate.exe with those arguments from commandline. Does it beep then?

I also get this annoying two beeps but I'm using the AutomaticUpdater component.

Yves

Can you reproduce this in a simple example project? Because I could never reproduce this bug,

OK, I can reproduce this now - I'll track down why this is happening and fix it.

The culprit was the RichTextBox. Or more specifically, when you use empty changelogs the RichTextBox beeps. This is a longstanding Microsoft bug.

This will be fixed in wyUpdate 2.6.6.

That being said, you should always write something in the change log. This way your users have a vague idea what's changed. It doesn't need to be technical. Short an sweet is best.

Thanks for spotting it guys. And thanks Yves for reproducing this.

wyBuild 2.6.6 is out now.