BeginUpdateBatch Function

This function is called to signify the beginning of a batch of updates.

This function was introduced with the release of HotDocs 2006. Earlier versions of HotDocs will not call this function.

Syntax

void BeginUpdateBatch ( )

Example (Visual C++)

The following Visual C++ example displays a MessageBox when the BeginUpdateBatch function is called:

void WINAPI BeginUpdateBatch()

{

  MessageBox(NULL, "Click OK to continue.", "BeginUpdateBatch", MB_OK);

}