Search found 1441 matches: cell

Return to advanced search

Re: Select part of the cell

Natter wrote:oRng.Find.MatchAllWordForms:=.T.[/code]


Try

Code: Select all  Expand view
oRng:Find:MatchAllWordForms := .T.


Note: colons instead of dots.
by Enrico Maria Giordano
Mon Aug 21, 2023 4:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select part of the cell
Replies: 5
Views: 292

Re: Select part of the cell

sorry, I have no idea
by Antonio Linares
Mon Aug 21, 2023 2:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select part of the cell
Replies: 5
Views: 292

Re: Select part of the cell

I need to find all the spellings of the string. To do this oRng:=oTb:Item(1):Cell(x,y):Range:Duplicate()[b]oRng.Find.MatchAllWordForms:=.T.[/b]oRng:Find:Execute("MyText") However, I get an error: Word.Application:ACTIVEDOCUMENT:TABLES:ITEM:CELL:RANGE:DUPLICATE:FIND/3 ...
by Natter
Mon Aug 21, 2023 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select part of the cell
Replies: 5
Views: 292

Re: Una más sobre xBrowse (SOLUCIONADO)

No need to create array
Directly Xbrowse recordset.
If you set oCol:nEditType := 1 user can edit any cell he wants.
XBrowse automatically saves the changes.
What more you want to know?
by nageswaragunupudi
Mon Aug 21, 2023 10:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una más sobre xBrowse (SOLUCIONADO)
Replies: 3
Views: 229

Re: Question about xBrowse

By the way, is it possible to paste what I have on the clipboard into a cell with just one mouse click? Yes. Just by clicking Ctrl-V. For this we first need to set oBrw:lCanPaste := .t. We can paste text into text fields and even images into Image fields. All ...
by nageswaragunupudi
Mon Aug 21, 2023 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about xBrowse
Replies: 6
Views: 284

Re: Question about xBrowse

Mr. Rao:

Thanks so much, I understood.

By the way, is it possible to paste what I have on the clipboard into a cell with just one mouse click?

Best regards
by Armando
Mon Aug 21, 2023 3:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about xBrowse
Replies: 6
Views: 284

Re: Question about xBrowse

Now how do I know the new value after editing the cell? oCol:Value Notes: Do not use this for validation. This is called when the modified data is already written and also if the old data is different from the new data written. This codeblock is ...
by nageswaragunupudi
Mon Aug 21, 2023 3:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about xBrowse
Replies: 6
Views: 284

Question about xBrowse

kindly friends: With the code below I know the current value of the cell :bOnChange  := { |oCol, uOldVal| VerSaldo(uOldVal) }  Now how do I know the new value after editing the cell? I must compare the old content against the new ...
by Armando
Sun Aug 20, 2023 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about xBrowse
Replies: 6
Views: 284

Re: Select part of the cell

Thank you, Antonio! I'll try
by Natter
Sat Aug 19, 2023 6:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select part of the cell
Replies: 5
Views: 292

Re: Select part of the cell

Dear Yuri, oTb := oWord:ActiveDocument:TablesoCell := oTb:Item(1):Cell(x, y)oStartRange := oCell:Range:Duplicate()oEndRange := oCell:Range:Duplicate()oStartRange:MoveStart(5, -1) // MoveStart to character, ...
by Antonio Linares
Sat Aug 19, 2023 5:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select part of the cell
Replies: 5
Views: 292

Select part of the cell

Hi, I need to select a fragment in a table cell. I do this: oTb := oWord:ActiveDocument:TablesoRng:=oTb:Item(1):Cell(x,y):RangeoRng:Select()oWrd:Selection:Find:Execute('Keyword') //keyword for getting coordinatesdim:={{oTb:Item(cnt):Cell(st,3):Start,oWrd:Selection:Start-1}, ...
by Natter
Sat Aug 19, 2023 12:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select part of the cell
Replies: 5
Views: 292

Re: Actualizar xBrowse con un Clic del ratón?

Then, you can copy any text any where and then press Ctrl-V in the active cell. The value is pasted and browse updated.
This applies even for pasting images in memo fields.

Aprovechado el hilo, como debería definirse si quiero hacerlo con un Xbrowse con Array?
by cmsoft
Fri Aug 18, 2023 3:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1384

Re: Actualizar xBrowse con un Clic del ratón?

Code: Select all  Expand view
oCol:VarPut( newValie _


For pasting initially set
Code: Select all  Expand view
oBrw:lCanPaste := .t.

Then, you can copy any text any where and then press Ctrl-V in the active cell. The value is pasted and browse updated.
This applies even for pasting images in memo fields.
by nageswaragunupudi
Fri Aug 18, 2023 12:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1384

Re: need Help with oBro:bSeek

... Recordset of Excel ? Yes, you can. Clicking on header to sort the column and incremental seek/filter works just like any other datasource. Inline Cell Edit: Pressing Enter key starts inline cell edit, if the cell is editable. [A reason why we should not disturb the internal behavior of XBrowse ...
by nageswaragunupudi
Wed Aug 16, 2023 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: need Help with oBro:bSeek
Replies: 3
Views: 215

Search and coloring of a phrase

Hi, To find and color a phrase in the text of a Word table cell, I do this: oTb:Item(n).Cell(x,y):Select()oWrd:Selection.Find:Execute("MyText", .F., .T.)oWrd:Selection.Range:HighLightColorIndex=CLR_RED How can ...
by Natter
Sun Aug 13, 2023 5:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search and coloring of a phrase
Replies: 2
Views: 205
PreviousNext

Return to advanced search