How is it sent from the form to the report?
--
Bertil Isberg - CTECH
Paradox buglist:
online: http://w1.826.comhem.se/~u82608896/
FAQ newsgroup: corel.wpoffice.paradox-faq
Then the wording is extracted by fields in the Report which either 'look'
directly at the appropriate field in the Table or select the field relative
to the 'iif' statements set in those fields in the Report.
As I say, the layout and content of the resulting letter is absolutely fine.
It is just that where I would like to underline or emphasise (bold) a word
or phrase I cannot achieve this in the final product.
Thanks for responding thus far.
"Bertil Isberg" <bertil.isberg@NOcomhemSPAMdotse> wrote in message
news:419f4a59$1_2@cnews...
> As I say, the layout and content of the resulting letter is absolutely
fine.
> It is just that where I would like to underline or emphasise (bold) a word
> or phrase I cannot achieve this in the final product.
The only way to do AFAIK is to use formatted memo fields. If you can
restructure your table and change the field type to formatted memo without
losing data, you should be able to do what you want.
I have already set these fields to Formatted Text. I can set the text as
Bold or Underline using the form but when the text is recovered via the
Report to produce the final letter the text formatting does not 'come
through'.
Thanks for responding though.
"Michael Israel" <mb...@spamlessoptonline.net> wrote in message
news:419f9174$1_1@cnews...
> I have already set these fields to Formatted Text
I assume you meant formatted memo (F) in the field type.
Formatted memos may loose thier formatting if handled by string methods.
doDefault
;// Enter memo view
;//
If Not isedit() Then
patient.action(databeginedit)
endIf
self.postaction(EditEnterMemoView)
self.font.typeface = "Times New Roman"
self.font.size = 12
dodefault
self.postaction(EditEnterMemoView)
self.postaction(UserAction+1)
method action(var eventInfo ActionEvent)
if eventinfo.id()=useraction+1 then
self.action(SelectSelectAll)
self.font.typeface = "Times New Roman"
self.font.size = 12
endif
endMethod
"Michael Israel" <mb...@spamlessoptonline.net> wrote in message
news:419fa961_2@cnews...
========================================
iif([MASTER.Country Member]= "C" or [MASTER.Country Member]= "H"
,[MASTER.AddedText1],iif([MASTER.Non Dining] = "ND","As a Non Dining Member
I will assume YOU ARE NOT DINING unless you advise otherwise and
"+[MASTER.MainText],[MASTER.MainText]))
========================================
"Bertil Isberg" <bertil.isberg@NOcomhemSPAMdotse> wrote in message
news:419fb89b_3@cnews...
I think what is happening here is than when you add the string to the
formated memo field, the formating gets lost.
You might be able to achieve what you want by using a text object and a
combinations of calculated fields and your formated memo fields _inside_ the
text object. The important thing is to not add anything to the formated memo
fields.
Anders Jonsson
"Bertil Isberg" <bertil.isberg@NOcomhemSPAMdotse> wrote in message
news:41a055b0$1_3@cnews...
I didn't have any other code in my form.
Of course the form has to be in edit mode, otherwise you can't change the
properties of a formatted memo.
I agree.