Search found 176 matches

by j&b
Tue Dec 24, 2019 8:52 am
Forum: Support
Topic: Marking the whole table row and the whole table column of a focused table cell
Replies: 10
Views: 33160

Re: Marking the whole table row and the whole table column of a focused table cell

Sorry, sorry, sorry. Your solution is different and works perfectly. I tried your example without looking into the code enough because I saw the 'Highlight' button. I had double-clicked in a cell, but in anticipation I forgot that I had to do Shift + double-click. Sorry again for my hasty feedback. ...
by j&b
Tue Dec 24, 2019 8:30 am
Forum: Support
Topic: Marking the whole table row and the whole table column of a focused table cell
Replies: 10
Views: 33160

Re: Marking the whole table row and the whole table column of a focused table cell

Thank you very much for your effort. Unfortunately, I must have expressed myself incorrectly. Your solution corresponds to mine. I need 2 steps to get the 'cross': 1. Click in wanted cell 2. Click at 'sbTabZeilefaerben' button to run code. Result: The 'cross' is created as posted by you. It's the sa...
by j&b
Sun Dec 22, 2019 10:27 am
Forum: Support
Topic: Marking the whole table row and the whole table column of a focused table cell
Replies: 10
Views: 33160

Re: Marking the whole table row and the whole table column of a focused table cell

First Thanks.

The example in
TRichView\Demos\DelphiUnicode\Assorted\Graphics\DragImg\
is dragging a TImage to TRichViewEdit.
This does not fit my circumstances.

I want to have a row and column that intersect in the focused cell.
by j&b
Sat Dec 21, 2019 6:33 pm
Forum: Support
Topic: Marking the whole table row and the whole table column of a focused table cell
Replies: 10
Views: 33160

Re: Marking the whole table row and the whole table column of a focused table cell

Does really nobody know what a solution could look like, if you click in a rveTabelle (rve: RichViewEdit) to get the 'cross' - in the intersection of which the focused cell is located?

My solution requires 2 steps:
1. Click on the cell
2. Click the switch '.sbTabZeilefaerbenClick'.
by j&b
Thu Dec 19, 2019 12:17 pm
Forum: Support
Topic: Marking the whole table row and the whole table column of a focused table cell
Replies: 10
Views: 33160

Marking the whole table row and the whole table column of a focused table cell

Hello, my code for marking the whole table row and the whole table column of a focused table cell works as long as I put the code into a panel (.sbTabZeilefaerbenClick (Sender: TObject)). But if I set it in .memoRVDblClick (Sender: TCustomRichView; ClickedWord: TRVUnicodeString; Style: Integer) I ge...
by j&b
Fri Aug 23, 2019 8:22 am
Forum: Support
Topic: copy content from 1-cell-table to another 1-cell-table
Replies: 2
Views: 13134

Re: copy content from 1-cell-table to another 1-cell-table

Thank you. This runs now without border lines procedure TForm1.FokusierteZelleMarkierenClick(Sender: TObject); var RVData: TCustomRVData; //uses CRVData, CRVFData, yNc: Integer; begin if Memo.GetItemStyle(memo.CurItemNo)=rvsTable then begin RVData := rveTable.Cells[0,0]; RVData := RVData.Edit; TCust...
by j&b
Thu Aug 22, 2019 5:37 pm
Forum: Support
Topic: copy content from 1-cell-table to another 1-cell-table
Replies: 2
Views: 13134

copy content from 1-cell-table to another 1-cell-table

How can I mark the content of a 1-cell table (with all attributes) and place it in the clipboard (can be done with Ctrl + c)? Subsequently, the content of the clipboard should be inserted again in another 1-cell table (can be done with Ctrl + v). My experiments always show that in the 'other 1-cell'...
by j&b
Mon Oct 08, 2018 3:45 pm
Forum: Support
Topic: has RveMemo focus
Replies: 1
Views: 9587

has RveMemo focus

Is there any way to know if memo has focus?
by j&b
Thu Apr 12, 2018 10:40 am
Forum: Support
Topic: time passed until first typed letter appeared in memo.
Replies: 12
Views: 31402

Re: time passed until first typed letter appeared in memo.

Thank you for your efforts. I will try my solution. So that not every record-change determines the number of images, I have added a button to allow to count images or not Only in a few memos are a large number of pictures. Jürgen procedure TForm1.memoEnter(Sender: TObject); var i,picZae: integer; be...
by j&b
Tue Apr 10, 2018 7:36 am
Forum: Support
Topic: time passed until first typed letter appeared in memo.
Replies: 12
Views: 31402

Re: time passed until first typed letter appeared in memo.

Trials confirmed the assumption that the number of images in the memo is responsible for the delay. procedure TForm1.MemoEnter (Sender: TObject); var i, picZae: integer; begin    // ...    for i: = 0 to Memo.ItemCount-1 do      if Memo.GetItemStyle (i) = rvsPicture then inc (picZae);    pStatusbar.C...
by j&b
Mon Apr 09, 2018 11:34 am
Forum: Support
Topic: time passed until first typed letter appeared in memo.
Replies: 12
Views: 31402

Re: time passed until first typed letter appeared in memo.

In other words, you can't do anything against the delay until first letter appears ?
by j&b
Mon Apr 09, 2018 6:43 am
Forum: Support
Topic: time passed until first typed letter appeared in memo.
Replies: 12
Views: 31402

Re: time passed until first typed letter appeared in memo.

Your hint wasn'tsuccessful. Everything as usual. Here my .dpr: program mHilfe; uses Forms, unit1_mh in 'unit1_mh.pas' {Form1}, RVGrCache; {$R *.RES} begin RichViewMaxPictureCount := 100000; Application.Initialize; Application.CreateForm(TForm1, Form1); Application.Run; end. By the way Is there a fun...
by j&b
Sun Apr 08, 2018 7:51 am
Forum: Support
Topic: time passed until first typed letter appeared in memo.
Replies: 12
Views: 31402

Re: time passed until first typed letter appeared in memo.

Hello Sergey, you copy many pictures into a TRichView memo. How many do you have to try. Then you change the record and return to the memo (with the many pictures) and write a word in the memo. Although you have already pressed some letters, the first letter of the word appears only after a short ti...
by j&b
Sat Apr 07, 2018 4:30 pm
Forum: Support
Topic: time passed until first typed letter appeared in memo.
Replies: 12
Views: 31402

Re: time passed until first typed letter appeared in memo.

I've forgotten:

2. How can I know how many bytes occupy a memo (with pictures