does anyone knows what Trim(!Deleted & "") means ? what is this Deleted and ! and so on ..i only knows Trim(string)
thanks
Printable View
does anyone knows what Trim(!Deleted & "") means ? what is this Deleted and ! and so on ..i only knows Trim(string)
thanks
It seems you (or whoever's code it is ) has opened a recordest and is triming the field called Delete.
eg..VB Code:
'open Recordset With myRecordset MyValue = Trim(!Delete) End With
and what about &"" ?
the actual coding is flex1.TextMatrix(flex1.Rows - 1, 0) = Trim(!Deleted & "")
and why is there an ! ?
Why is this in the ASP.NET forum as well?
oppos sorrie i post it wrong accidentally
The & "" part is to prevent an error when the value in the database is null.
Because Null & "" = "" no invalid use of null error is thrown.
i see thanks