Search found 18 matches
- Tue Oct 24, 2006 3:52 pm
- Forum: Support
- Topic: Still having problems to save and load text and para styles
- Replies: 2
- Views: 10944
- Fri Oct 20, 2006 7:31 pm
- Forum: Support
- Topic: Still having problems to save and load text and para styles
- Replies: 2
- Views: 10944
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 ...
- Wed Oct 18, 2006 1:42 am
- Forum: Support
- Topic: SmartPopupProperties in RichViewEdit ?
- Replies: 1
- Views: 8961
SmartPopupProperties in RichViewEdit ?
On Mailmerge2 smartTag demo, RichviewEdit has a propertie called SmartPopUpPropertie. Is that a component ? If so, where can i find it ?
- Tue Oct 17, 2006 3:08 pm
- Forum: Support
- Topic: Multline text in RichViewEdit function SetItemText
- Replies: 1
- Views: 9411
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 ?
- Sun Oct 08, 2006 11:30 pm
- Forum: Support
- Topic: Problem on implement spellcheck in richviewedit
- Replies: 5
- Views: 20057
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.
- Thu Oct 05, 2006 2:29 am
- Forum: Support
- Topic: Problem on implement spellcheck in richviewedit
- Replies: 5
- Views: 20057
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.
I'm using RVLSSpell and SpellChecker.
Please, help me.
- Sat Sep 30, 2006 12:38 am
- Forum: Support
- Topic: Problem on implement spellcheck in richviewedit
- Replies: 5
- Views: 20057
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 ...
- Sat Sep 30, 2006 12:32 am
- Forum: Support
- Topic: Draw a pageborder in RichViewEdit
- Replies: 1
- Views: 9337
Draw a pageborder in RichViewEdit
How can i draw a page border in richviewedit ?
- Sat Sep 30, 2006 12:31 am
- Forum: Support
- Topic: Save control properties to rfv file
- Replies: 1
- Views: 9030
Save control properties to rfv file
Is possible to save properties like DataSet of datacontrols in RFV files ?
- Fri Sep 29, 2006 4:20 am
- Forum: Support
- Topic: Saving and loading text and paragrapf styles from ini file
- Replies: 1
- Views: 9625
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.
I tried the code:
Rvstyle.Textstyle.SaveToIni(IniFile, ' ');
Rvstyle.TextStyle.LoadFromIni(IniFile, ' ', crdefault);
the same for para styles.
- Fri Sep 08, 2006 1:49 am
- Forum: Support
- Topic: Programing delphi controls in richviewedit in run-time
- Replies: 1
- Views: 9482
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.
- Fri Sep 08, 2006 1:40 am
- Forum: Support
- Topic: Problem inserting TComboBox and TListBox in richviewedit
- Replies: 2
- Views: 12734
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 ...
- Fri Sep 08, 2006 1:29 am
- Forum: Support
- Topic: Insert pagebrakes automatically like MSWord
- Replies: 1
- Views: 9553
Insert pagebrakes automatically like MSWord
How can I insert pagebreaks in a trichviewedit automatically when you reache a predeterminate number of lines, like MSWord ?
- Fri Sep 08, 2006 1:21 am
- Forum: Support
- Topic: Insert in a single file the contents of varios richviewedits
- Replies: 1
- Views: 10420
Insert in a single file the contents of varios richviewedits
How can i assign the contents of varios richviewedits into a single file ?