I am deleting a couple of field in my database and adding some new ones. Where do I change the SQL statement to select these new fields and delete the old ones?
I also know that I need to add
if IsNumeric(strSearchFor) or IfNeedQuotes(GetFieldType("NEW FIELD"))="True" or _
strSearchOption="Contains" or strSearchOption="Starts with ..." then
strAdd = strAdd & " or lower(" & AddWrappers("NEW FIELD") & ")" & StrWhere("URL", strSearchFor, strSearchOption, "")
end if
for each of my new field in the _list page, but is there anything else I have to change. ..???