
-----------------------------------
bill_ion_boi
Thu Dec 02, 2004 8:41 pm

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

-----------------------------------
Delos
Thu Dec 02, 2004 9:33 pm


-----------------------------------
Simply use the index command to find the part of the into which you want the text added:

[url=http://www.compsci.ca/v2/viewtopic.php?t=4055]Indexes by AsianSensation

This tutorial will explain it all.

-----------------------------------
bill_ion_boi
Thu Dec 02, 2004 10:00 pm


-----------------------------------
Im not sure how to relate that tutorial into my problem
