FPC_CreateWindow

Syntax

HWND WINAPI FPC_CreateWindow(
  HFPC hFPC,
  DWORD dwExStyle,
  LPCTSTR lpWindowName,
  DWORD dwStyle,
  int x,
  int y,
  int nWidth,
  int nHeight,
  HWND hWndParent,
  HMENU hMenu,
  HINSTANCE hInstance,
  LPVOID lpParam
);

Description

The FPC_CreateWindow function creates an F-IN-BOX window associated with the specified HFPC handle. It provides a simpler way to create windows compared to using CreateWindow or CreateWindowEx directly, while still exposing the same flexibility through style and extended style parameters.

This window hosts the Flash Player ActiveX control loaded by F-IN-BOX and can be created as a child window, popup window, or transparent window, depending on the styles passed.

See also: Getting Started