Click or drag to resize

BasicNoUIObjDoEvents Event

Occurs when a macro/module is executing.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public event EventHandler<EventArgs> DoEvents

Value

EventHandlerEventArgs

Implements

IBasicNoUIDoEvents
Remarks
The event handler receives an argument of type EventArgs.

By merely calling DoEvents, you can allow your own application to process messages and cooperatively multitask while a macro/module is running.

Example
Standard DoEvents processing:
void basicIdeCtl1_DoEvents(object sender, System.EventArgs e)
{
    WinWrap.Basic.Util.DoEvents();
}
See Also