Georges
unread,Jul 14, 2009, 7:45:09 AM7/14/09You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hello, in a form I have a 'historical' text field allowing multiple
values and using the Newline as separator values. This field is
maintained by the 'querysave' of the document with those
statements:
'Update edit history
hist = source.FieldGetText("reserve2")
hist = hist & Chr$(10) & Chr$(13) & Now & " " &
session.CommonUserName & " Modified/Processed this doc "
Call source.FieldSetText ("reserve2", hist)
'End of edit history
.
Now I have a request to create a new view and to split this field in
columns.
1 column by save operation.
Knowing that we can have a maximum of 8 save operations during the
process of the document, how can I do that?
I've tried with @word but I never been able to handle the
'historical'
field correctly.
Thanks for your help.
GR