Computer Science Canada File name problem |
Author: | bill_ion_boi [ Thu Dec 02, 2004 8:41 pm ] |
Post subject: | File name problem |
The folloing is a portion of my code imageFile := "w/Walkup.bmp" if person = "P2" then imageFile := "B" + imageFile end if The problem is when person = "P2" I want image file to be "w/BWalkup.bmp" NOT "Bw/Walkup.bmp" Anyhelp is apreciated |
Author: | Delos [ Thu Dec 02, 2004 9:33 pm ] |
Post subject: | |
Simply use the index command to find the part of the into which you want the text added: Indexes by AsianSensation This tutorial will explain it all. |
Author: | bill_ion_boi [ Thu Dec 02, 2004 10:00 pm ] |
Post subject: | |
Im not sure how to relate that tutorial into my problem |