Using Automatic Updater without a menu?

I am trying to incorporate updater control in C# windows forms application. My problem is that I do not have menus or Tool Boxes. Can I attach control to some events?

Thanks

Allwingo

Hey Allwingo,

Yes, you can use any control (or none at all) to control the automatic updater. We've answered this question before here.

Tell me if this helps.

Thanks, it does help a lot. Still I have a problem. The compiler complains that the

UpdateStepOn

is not defined. I put

using wyUpdate.Common;

What else am I missing?

Thanks a lot

Allwingo

You need to add:

using wyDay.Controls;

Thank you very very much.

Everything works nicely.

Allwingo