To use this exact copy of MPL Word v0.2, you'll need JustBASIC! Of course I think you guys already knew that.
MPL Word v0.2
-
maddevon2222
- Posts: 10
- Joined: Sun Mar 19, 2006 8:41 am
MPL Word v0.2
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.
To use this exact copy of MPL Word v0.2, you'll need JustBASIC! Of course I think you guys already knew that.
- Attachments
-
mplword0.2.zip- (779 Bytes) Downloaded 469 times
-
JanetTerra
- Site Admin
- Posts: 117
- Joined: Wed Nov 24, 2004 2:49 am
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.
Janet
Nice start!
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
Nice start!