Share via


fShowDialog

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Example user-defined command that loads and displays an example native Windows dialog box. When GENERIC.xll is loaded, it creates a user-defined menu, Generic, through which this command is accessed.

int WINAPI fShowDialog(void);

Parameters

The function takes no parameters.

Property Value/Return Value

The function return integer zero to indicate successful completion

Remarks

The steps to display the native Windows dialog box are as follows:

  1. Obtain the Microsoft Office Excel main Windows handle using GetHwnd.

  2. Hook the Excel main window using HookExcelWindow.

  3. Display the dialog box using DialogBox.

  4. Unhook the Excel main window using UnhookExcelWindow.

Example

See \SAMPLES\GENERIC\GENERIC.C for the source code for this function.

See Also

Concepts

Functions in the Generic DLL