Search found 30 matches

by chuqingsheng
Sat May 18, 2013 8:56 am
Forum: Support
Topic: when SRichview can implement the different header and footer
Replies: 1
Views: 8118

when SRichview can implement the different header and footer

when SRichview can implement the different header and footer in different page (or section)?
by chuqingsheng
Mon May 06, 2013 5:45 am
Forum: Support
Topic: help about template editor feature.
Replies: 1
Views: 8360

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...
by chuqingsheng
Mon Jun 18, 2012 2:33 pm
Forum: Support
Topic: bug? reload RVF SRVCombobox control height changed
Replies: 6
Views: 15155

I use the last release version ,
I mean after load then rvf doc, not copy. I use srichviewedit.
by chuqingsheng
Fri Jun 15, 2012 3:01 pm
Forum: Support
Topic: bug? reload RVF SRVCombobox control height changed
Replies: 6
Views: 15155

Dear Sergey, have any suggest?
by chuqingsheng
Thu Jun 14, 2012 1:42 am
Forum: Support
Topic: bug? reload RVF SRVCombobox control height changed
Replies: 6
Views: 15155

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_c...
by chuqingsheng
Wed Jun 13, 2012 1:53 am
Forum: Support
Topic: bug? reload RVF SRVCombobox control height changed
Replies: 6
Views: 15155

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.
by chuqingsheng
Tue May 29, 2012 4:41 am
Forum: Support
Topic: Howto know the new content inputed by user since last saved
Replies: 3
Views: 10525

I think a solution,

after load doc, I can assign a tag value(for example "orgin") for all Item.

then user input text will not have the tag value, so I can detected the tag to distinguish them.

but ... user input text must be as new item. how to do?
by chuqingsheng
Mon May 28, 2012 8:08 am
Forum: Support
Topic: Howto know the new content inputed by user since last saved
Replies: 3
Views: 10525

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 us...
by chuqingsheng
Tue Apr 17, 2012 12:56 am
Forum: Support
Topic: SRVCombobox problem in activeForm
Replies: 5
Views: 13085

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,...
by chuqingsheng
Mon Apr 16, 2012 2:25 pm
Forum: Support
Topic: SRVCombobox problem in activeForm
Replies: 5
Views: 13085

Sergey Tkachenko wrote:We need some time to test this problem, please wait.
Dear Sergey, do you find the solution already? I need the fixed version agent.
by chuqingsheng
Fri Apr 13, 2012 1:36 am
Forum: Support
Topic: SRVCombobox problem in activeForm
Replies: 5
Views: 13085

Dear Sergey,
Please help me.
by chuqingsheng
Mon Apr 09, 2012 4:41 am
Forum: Support
Topic: SRVCombobox problem in activeForm
Replies: 5
Views: 13085

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?
by chuqingsheng
Sat Apr 07, 2012 6:44 am
Forum: Support
Topic: how to implement that user can protect they selected text?
Replies: 3
Views: 10949

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'...
by chuqingsheng
Fri Apr 06, 2012 2:27 pm
Forum: Support
Topic: how to implement that user can protect they selected text?
Replies: 3
Views: 10949

another question, I need draw a border for the protected text to let those text can be distinguish from other normal text. how to that ? please give me some guide
by chuqingsheng
Fri Apr 06, 2012 2:03 pm
Forum: Support
Topic: how to implement that user can protect they selected text?
Replies: 3
Views: 10949

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 exampl...