I have a question though about library file naming. I have a file named "Remove.txt" in my lib folder, which contains three functions: REMOVE1, REMOVE2, REMOVE3. These functions simply remove a record from anywhere in an array (a separate function for 1-, 2-, and 3-dimensional arrays). In my main program, I receive an error when I try to insert the contents of this file using:
Code: Select all
{/lib/Remove}
I was surprised to see that I also got this error when replacing the "o" with a "0" (zero)! I was expecting instead to get the error: "Error inserting file".
Can someone help me understand what I'm doing wrong? Are there specific words I can't use in my library file names?