requestOpen element

The requestOpen element is used to open an event notification message on the client computer.

The requestOpen element is defined in the asyncui namespace at this URI:

https://schemas.microsoft.com/2003/print/asyncui/v1/request

This resource may not be available in some languages and countries.

Usage

<requestOpen>
  child elements
</requestOpen>

Attributes

There are no attributes.

Child elements

Element Description
balloonUI An optional element that is used to display a message balloon on the client computer.
customUI An optional element that specifies a custom user interface to be displayed on a client computer.
messageBoxUI An optional element that is used to display a message box on the client computer.

Parent elements

Element Description
asyncPrintUIRequest A required element that describes a request issued by the printer driver to create a message on a client computer.

Examples

The following code example opens an event notification message.

<?xml version="1.0" ?>
   <asyncPrintUIRequest
    xmlns="https://schemas.microsoft.com/2003/print/asyncui/v1/request">
    <v1>
      <requestOpen>
        <balloonUI iconID="1" resourceDll="IHV.dll">
          <title stringID="1234" resourceDll="IHV.dll" />
          <body stringID="100" resourceDll="IHV.dll">
            <parameter stringID="5" />
            <parameter stringID="1002" resourceDll="IHV.dll" />
          </body>
        </balloonUI>
      </requestOpen>
    </v1>
  </asyncPrintUIRequest>

See also

asyncPrintUIRequest

balloonUI

customUI

messageBoxUI

requestClose