I am trying to add a simple Bitmap to the frmSplash screen. I can't seem to get it to work. The bit map image name is "aswg.bmp" it is a 8bit color image its size is 156x156. Could some one please give a Commadore 64 basic programer a hand. Its realy hard to dust off that unused grey matter. :) Here is the frmSplash frame code: /*************************************************************************** ** * * Created with Falch.net DeveloperStudio * http://www.falch.net/ * * Created : 1/31/2001 4:26:46 PM * Creator : (Aaron Johnon) *******************************************************************/ #include "Test_res.h" ICONFAMILY "sphere_22x22x1.bmp" "sphere_22x22x2.bmp" "sphere_22x22x4.bmp" "sphere_22x22x8.bmp" SMALLICONFAMILY "sphere_15x9x1.bmp" "sphere_15x9x2.bmp" "sphere_15x9x4.bmp" "sphere_15x9x8.bmp" FORM ID frmSplash AT (2 2 156 156) USABLE MODAL BEGIN TITLE "frmSplash" BUTTON "Close" ID cmdClose AT (10 140 AUTO AUTO) FORMBITMAP AT (0 0) BITMAP ASWG USABLE END FORM ID frmMain AT (2 2 156 156) USABLE MODAL BEGIN TITLE "frmMain" BUTTON "Close" ID cmdClose AT (10 140 AUTO AUTO) END BITMAPCOLOR ASWG "aswg.bmp" -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
