|

VBCE
FormFill Test.zip
(4k)
It is sometimes needed to give a Form a different look and fill
it, totally or in part, with an image. This example shows how to
do that by exporting the following function:
Public Sub FormFillImage(
_
Frm As Form, _
Img As String)
where "Img" is the complete path and name of a .bmp image
file.
When the program first starts it tries to use the following file:
"\windows\zigzag.bmp"
and completely fills the form witbh this image. If not available
on the device, the program will ask you to provide another one.
You can try other images by hitting "..." and selecting
one of the .bmp files available on the device.
|