In a form I have written a function, that edits a string passed to it and then it returns a new string
the function is like this
function name(inputstr as string) as string
name = inputstr + " is cool"
end function
in the database file lets call it "DB1"
it contains
name text field
sir-name text field
their are currently 10 records. I want to start from the first record to the last using this function to change the name field
IE
record 1 before after
name john john is cool
sir-name pip pip
record 2
name dave dave is cool
sir-name kul kul
and so on to the end
I hope this makes sence
the function is like this
function name(inputstr as string) as string
name = inputstr + " is cool"
end function
in the database file lets call it "DB1"
it contains
name text field
sir-name text field
their are currently 10 records. I want to start from the first record to the last using this function to change the name field
IE
record 1 before after
name john john is cool
sir-name pip pip
record 2
name dave dave is cool
sir-name kul kul
and so on to the end
I hope this makes sence