Search found 18 matches

by VT
Tue Oct 24, 2006 3:52 pm
Forum: Support
Topic: Still having problems to save and load text and para styles
Replies: 2
Views: 10348

Thanks Sergey, it worked.
by VT
Tue Oct 24, 2006 3:34 pm
Forum: Support
Topic: ''
Replies: 2
Views: 11047

''

''
by VT
Fri Oct 20, 2006 7:31 pm
Forum: Support
Topic: Still having problems to save and load text and para styles
Replies: 2
Views: 10348

Still having problems to save and load text and para styles

I'm still having problems to save and load text and paragraph styles to a IniFile. I have tried this code to save: ini := TiniFile.create(ExtractFilePath(ApplicationExeName) + 'Font.ini'); try textstyle.savetoIni(ini, 'font', 'fontP'); finally ini.free; end; And this code to load: ini := TiniFile.cr...
by VT
Wed Oct 18, 2006 1:42 am
Forum: Support
Topic: SmartPopupProperties in RichViewEdit ?
Replies: 1
Views: 8628

SmartPopupProperties in RichViewEdit ?

On Mailmerge2 smartTag demo, RichviewEdit has a propertie called SmartPopUpPropertie. Is that a component ? If so, where can i find it ?
by VT
Tue Oct 17, 2006 3:08 pm
Forum: Support
Topic: Multline text in RichViewEdit function SetItemText
Replies: 1
Views: 8912

Multline text in RichViewEdit function SetItemText

I need to insert a multiline text in RichViewEdit function SetItemText but I'm having problems. How can i do that ? Is that possible ?
by VT
Sun Oct 08, 2006 11:30 pm
Forum: Support
Topic: Problem on implement spellcheck in richviewedit
Replies: 5
Views: 18750

Still having problems on spellchecking

Well, I don't know wish version it is, but i have got it recently in one of those links you posted.
by VT
Thu Oct 05, 2006 2:29 am
Forum: Support
Topic: Problem on implement spellcheck in richviewedit
Replies: 5
Views: 18750

Still having problems on spellchecking

I tried the code on lsspelldemo but it didn't worked. When i add text with ADNL and start live spelling, it work, but when i click in richviewedit, the marks disapear and when i do live spelling againg, it don't work.
I'm using RVLSSpell and SpellChecker.
Please, help me.
by VT
Sat Sep 30, 2006 12:38 am
Forum: Support
Topic: Problem on implement spellcheck in richviewedit
Replies: 5
Views: 18750

Problem on implement spellcheck in richviewedit

I am having problems on implement spellcheck on a text editor with TRichViewEdit. I'm tried the following code: procedure TForm.RichViewEditSpellingCheck(Sender: TCustomRichView; const AWord: String; StyleNo: Integer; var Misspelled: Boolean); begin misspelled:=false; if spellchecker_ignorelist.Inde...
by VT
Sat Sep 30, 2006 12:32 am
Forum: Support
Topic: Draw a pageborder in RichViewEdit
Replies: 1
Views: 8852

Draw a pageborder in RichViewEdit

How can i draw a page border in richviewedit ?
by VT
Sat Sep 30, 2006 12:31 am
Forum: Support
Topic: Save control properties to rfv file
Replies: 1
Views: 8629

Save control properties to rfv file

Is possible to save properties like DataSet of datacontrols in RFV files ?
by VT
Fri Sep 29, 2006 4:20 am
Forum: Support
Topic: Saving and loading text and paragrapf styles from ini file
Replies: 1
Views: 9200

Saving and loading text and paragrapf styles from ini file

How can i save and load text and paragrapf styles from a ini file ?
I tried the code:

Rvstyle.Textstyle.SaveToIni(IniFile, ' ');

Rvstyle.TextStyle.LoadFromIni(IniFile, ' ', crdefault);

the same for para styles.
by VT
Fri Sep 08, 2006 1:49 am
Forum: Support
Topic: Programing delphi controls in richviewedit in run-time
Replies: 1
Views: 9039

Programing delphi controls in richviewedit in run-time

There is a way to programing inserted delphi controls in richviewedit in run-time, something like Microsoft Word, when you insert controls, you can programing then with Visual Basic in MSWord.
by VT
Fri Sep 08, 2006 1:40 am
Forum: Support
Topic: Problem inserting TComboBox and TListBox in richviewedit
Replies: 2
Views: 11918

Problem inserting TComboBox and TListBox in richviewedit

I am having problems on inserting the controls TComboBox and TListBox in richviewedit. I'm using the following code: var listbox : TListBox; begin listbox : TListBox.create(self); rve.insertcontrol('', listbox, rvvaBaseline); end; When I execute it, a exception is raised, "Control has no parent...
by VT
Fri Sep 08, 2006 1:29 am
Forum: Support
Topic: Insert pagebrakes automatically like MSWord
Replies: 1
Views: 9080

Insert pagebrakes automatically like MSWord

How can I insert pagebreaks in a trichviewedit automatically when you reache a predeterminate number of lines, like MSWord ?
by VT
Fri Sep 08, 2006 1:21 am
Forum: Support
Topic: Insert in a single file the contents of varios richviewedits
Replies: 1
Views: 9940

Insert in a single file the contents of varios richviewedits

How can i assign the contents of varios richviewedits into a single file ?