Page 1 of 1
MPL Word v0.2
Posted: Thu Mar 23, 2006 2:12 pm
by maddevon2222
Hello. THis is my new version of MPL Word. I had some help from some friends with making it work right.
To use this exact copy of MPL Word v0.2, you'll need JustBASIC! Of course I think you guys already knew that.

Posted: Thu Mar 23, 2006 3:14 pm
by JanetTerra
When we run this program from our own computers, we don't have access to your desktop files. (At least, those of us who are honest and decent folks aren't trying to access your desktop files...) Your program contains a 'hard path' to the bitmap files for open and save. Great for when the program is being run by you, not so great for other users.
Just BASIC contains several bitmaps in the bmp subfolder. For demonstration purposes, you could choose button03.bmp for SAVE and buttom02.bmp for OPEN. Use DefaultDir$ so each user can start within the JB Root Directory (remind your users to copy and paste this into JB that's been loaded from its own Root Directory) and then bury one subfolder deep to find the bitmaps.
Here are the 2 changes for your hard coded bmpbutton codes.
Code: Select all
bmpbutton #main.bmpbutton5, DefaultDir$;"\bmp\button03.bmp", [save], UL, 14, 311
bmpbutton #main.bmpbutton6, DefaultDir$;"\bmp\button02.bmp", [open], UL, 126, 311
Janet
Nice start!
