This is a problem, possibly a bug, at least something not well documented.
Early in my Main(), I create a bitmap and write it to a canvas on the main panel:
// ---------------------------------------------------------------------------
// Load the Hoist Sketch bit map from the JPEG file, obtain an ID,
// Write the bitmap to the Main Panel Canvas
// ---------------------------------------------------------------------------
GetBitmapFromFile ("Hoist_Sketch.jpg", &Hoist_SketchID);
CanvasDrawBitmap (panelHandle, PANEL_CANVAS, Hoist_SketchID, VAL_ENTIRE_OBJECT, MakeRect(40,30, VAL_KEEP_SAME_SIZE, VAL_KEEP_SAME_SIZE));
This works perfectly in Debug mode, and in Release mode.
When I create a Distribution Kit, install the kit, and launch the application, there is no image presented in the canvas.
Does this Hoist_Sketch.jpg file have to be manually placed somewhere in the installed application directories.
Help!