Search found 9 matches

by Juergen
Thu Apr 26, 2012 9:06 am
Forum: Support
Topic: Install Editors for DevExpress in Delphi 7
Replies: 2
Views: 10966

Thanks, this works fine.

I had only one problem: in file cxTRichView.pas the unit dxCoreClasses was used what is not included in Developer Express Components with Installer 1.58.

When one comment out dxCoreClasses the package compiles and work as expected.
by Juergen
Tue Apr 24, 2012 9:06 am
Forum: Support
Topic: Install Editors for DevExpress in Delphi 7
Replies: 2
Views: 10966

Install Editors for DevExpress in Delphi 7

Hello,

I have an problem installing the Editors for DevExpress in Delphi 7.

Is there any package for Delphi 7 out there?

Thanks in advance.

Juergen
by Juergen
Tue Jul 13, 2010 3:44 pm
Forum: Support
Topic: How to add the contents of one RTF Blob fields to a second?
Replies: 1
Views: 8572

How to add the contents of one RTF Blob fields to a second?

I have a Table with text (RTF formated) patterns in my Database. Now I want to add this text to an other text field of an other table. Both fields are of type Blob. The destination filed can contains RTF formated text, plain ASCII Text or can be NULL. What is the easiest way to fulfill this task? I ...
by Juergen
Tue Jan 26, 2010 11:31 am
Forum: Support
Topic: How to change the default font size in TDBRichViewEdit?
Replies: 2
Views: 10306

Thanks for the hint.

That solve my problem.

Jürgen
by Juergen
Mon Jan 25, 2010 11:36 am
Forum: Support
Topic: How to change the default font size in TDBRichViewEdit?
Replies: 2
Views: 10306

How to change the default font size in TDBRichViewEdit?

Hello, I need to change the default font size form 10 point to 8. I have try the following code at create time of the form: For i := 0 To DBRichTextEdit1.Editor.Style.TextStyles.Count - 1 Do DBRichTextEdit1.Editor.Style.TextStyles[i].Size := 8; But the font size didn't change. What can I do? Jürgen
by Juergen
Fri Nov 27, 2009 8:29 am
Forum: Support
Topic: How to retrive plain Text form an RTF DB Field?
Replies: 7
Views: 23802

Hi Sergey,

this solution solved my problem. Thanks for your help.

Jürgen
by Juergen
Thu Nov 26, 2009 8:58 am
Forum: Support
Topic: How to retrive plain Text form an RTF DB Field?
Replies: 7
Views: 23802

How to retrive plain Text form an RTF DB Field?

I have RTF formated text in some Database fields. Sometime I need the unformatted Text for export to a plain Text file. In this routine I have no DBRichView(Edit) field on hand.

What is the easiest way to extract the plain Text from the RTF formated field?
by Juergen
Wed Nov 25, 2009 2:50 pm
Forum: Support
Topic: Creating rvAction at runtime - set property ImageIndex
Replies: 2
Views: 9933

That's the way I solved my Problem. I have created a new Component (a TDBRTFEditor). Now this Component have a property mageList. The main problem was that I have to set the ItemIndex value by myself. When creating the Action at Designtime from Standard Actions this data and all other properties are ...
by Juergen
Thu Nov 05, 2009 8:55 pm
Forum: Support
Topic: Creating rvAction at runtime - set property ImageIndex
Replies: 2
Views: 9933

Creating rvAction at runtime - set property ImageIndex

Hello, I want to create TrvActions at runtime. I create an Action with FrvActionCut1 := TrvActionCut.Create(FActionList); To set Caption and Hint property I call RVA_LocalizeForm(FActionList); How can I load the Images in a TImageList and how to set the ImageIndex property of the Action? Thanks in ...