Search found 30 matches
- Sat May 18, 2013 8:56 am
- Forum: Support
- Topic: when SRichview can implement the different header and footer
- Replies: 1
- Views: 8326
when SRichview can implement the different header and footer
when SRichview can implement the different header and footer in different page (or section)?
- Mon May 06, 2013 5:45 am
- Forum: Support
- Topic: help about template editor feature.
- Replies: 1
- Views: 8564
help about template editor feature.
I need a application to make template doc. the template have some concept: 1. section. (not like ms word), section have property like ¡°title, id, readonly, candeleted. Section can nest, but not allow override. Section start must be paragraph start and section end must be paragraph end. If section p ...
- Mon Jun 18, 2012 2:33 pm
- Forum: Support
- Topic: bug? reload RVF SRVCombobox control height changed
- Replies: 6
- Views: 15633
- Fri Jun 15, 2012 3:01 pm
- Forum: Support
- Topic: bug? reload RVF SRVCombobox control height changed
- Replies: 6
- Views: 15633
- Thu Jun 14, 2012 1:42 am
- Forum: Support
- Topic: bug? reload RVF SRVCombobox control height changed
- Replies: 6
- Views: 15633
Did you set SRVComboBox.Autosize = False? Yes. procedure TfrmAppMain.InsertComboboxControl(RVEdit: TCustomRichViewEdit; ctrlname: string; ItemWidth: Integer; Items: TStrings); var c_combobox: TSRVComboBox; i, w: Integer; begin c_combobox := TSRVComboBox.Create(nil); c_combobox.Name := ctrlname; c ...
- Wed Jun 13, 2012 1:53 am
- Forum: Support
- Topic: bug? reload RVF SRVCombobox control height changed
- Replies: 6
- Views: 15633
bug? reload RVF SRVCombobox control height changed
I insert SRVCombobox into RVF doc and set the srvcombobox control height with new value(< default value) . save it . but the control height changed after reload this rvf doc.
- Tue May 29, 2012 4:41 am
- Forum: Support
- Topic: Howto know the new content inputed by user since last saved
- Replies: 3
- Views: 10747
- Mon May 28, 2012 8:08 am
- Forum: Support
- Topic: Howto know the new content inputed by user since last saved
- Replies: 3
- Views: 10747
Howto know the new content inputed by user since last saved
let me explain it. I need document revison function. I use keydown event to handle back and delete key to prevent the delete content and set the text content( only text) style with strickout. user can input new text content . then when user delete the new text delete the new content that input by ...
- Tue Apr 17, 2012 12:56 am
- Forum: Support
- Topic: SRVCombobox problem in activeForm
- Replies: 5
- Views: 13456
SRVComboBox.pas, line 942. Change Application.CreateForm(TFSRVCBList, FSRVCBList); to FSRVCBList := TFSRVCBList.Create(Application); This fix will be included in the next update. Note: using TRichView/ScaleRichView in ActiveX requires our special permission, see license.txt for TRichView. Normally ...
- Mon Apr 16, 2012 2:25 pm
- Forum: Support
- Topic: SRVCombobox problem in activeForm
- Replies: 5
- Views: 13456
- Fri Apr 13, 2012 1:36 am
- Forum: Support
- Topic: SRVCombobox problem in activeForm
- Replies: 5
- Views: 13456
- Mon Apr 09, 2012 4:41 am
- Forum: Support
- Topic: SRVCombobox problem in activeForm
- Replies: 5
- Views: 13456
SRVCombobox problem in activeForm
I insert a SRVCombobox in SRichviewEdit that is in activeForm I use it in IE.
the dropdown list cann't close when the srvcombobox lost focus.
I guess the source of issue is that the activex 's application is nil.
but how to fix it so it's behave is same as normal application?
the dropdown list cann't close when the srvcombobox lost focus.
I guess the source of issue is that the activex 's application is nil.
but how to fix it so it's behave is same as normal application?
- Sat Apr 07, 2012 6:44 am
- Forum: Support
- Topic: how to implement that user can protect they selected text?
- Replies: 3
- Views: 11222
To change attributes of the selected text, use ApplyStyleConversion method. You need to implement OnStyleConversion event where you can return the index of the style with midified Protection property. The example of implementation of this event can be found in Demos\*\Editors\Editor 2\ thank. That ...
- Fri Apr 06, 2012 2:27 pm
- Forum: Support
- Topic: how to implement that user can protect they selected text?
- Replies: 3
- Views: 11222
- Fri Apr 06, 2012 2:03 pm
- Forum: Support
- Topic: how to implement that user can protect they selected text?
- Replies: 3
- Views: 11222
how to implement that user can protect they selected text?
I need such function: User can select the text and to set those text can not be deleted (delete protected). I search richview help doc, I know how to protect the item by itemNo, but could not found how to do with user selected text. I thought need to split the select text from origin item(for ...