SetWinBackgroundImage

Syntax:

SetWinBackgroundImage( hWnd, hBitmap )

Parameters:

hWnd

=

Handle des Fensters ( WindowID() )

hBitmap

=

Handle des Bitmaps ( LoadImage() )


Description:

Setzt ein Hintergrundbild in das Fenster.


Example:

  hWnd    = OpenWindow(0, x, y, x2, y2, #WS_POPUP, "Window Name")
  hBitmap = LoadImage(1,"MyPicture.bmp")
  SetWinBackgroundImage(hWnd, hBitmap)

  hWnd    = OpenWindow(0, x, y, x2, y2, #WS_POPUP, "Window Name")
  SetWinBackgroundImage(hWnd, LoadImage(1,"MyPicture.bmp"))


Supported OS:   Windows