A little tip:
The method I use is to have at the start of my program, a line which says:
StartDir$ = Get Dir$()
Then, if my program has folders for different things - say a Projects folder or an Images folder, I just use:
ProjectsDir$ = StartDir$ + "\Projects\"
ImageDir$ = StartDir$ + "\Images\"
and so on.
If you then later in the program want to load a file caled "MyImage.bmp" from the Images folder you simply use:
Load Image ImageDir$+"MyImage.bmp",ImgNum
Just create a string for each of the required folders your program accesses.
TDK