![]() |
Sergey Kornilov admin 2/26/2006 |
Use BeforeEdit/BeforeAdd events to replace space with Chr(160): dict("FieldName") = Replace(dict("FieldName", " ", Chr(160)) |
|
Sarjent author 2/26/2006 |
Use BeforeEdit/BeforeAdd events to replace space with Chr(160): dict("FieldName") = Replace(dict("FieldName", " ", Chr(160))
dict("Description") = Replace(dict("Description", " ", Chr(160)))
|
![]() |
Sergey Kornilov admin 2/26/2006 |
Here is the correct one: dict("Description") = Replace(dict("Description"), " ", Chr(160)) |