Search found 1441 matches: cell

Return to advanced search

Re: xBrowser click

I would like to know if it is possible to assign an action when clicking just once on a cell in the xBrowser, You can assign an action to code-block: oBrw:bLClicked := { |row,col,flags,brw| youraction( ... ) } The default behavior of XBrowse is that ...
by nageswaragunupudi
Wed Oct 11, 2023 10:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser click
Replies: 16
Views: 934

xBrowser click

Hi guys good morning! I would like to know if it is possible to assign an action when clicking just once on a cell in the xBrowser, and another question is about the SetDlgGradient command, when dividing a screen as follows: SetDlgGradient( { { 0.9, CLR_WHITE, CLR_WHITE }, { 0.1 ...
by oliveiros junior
Wed Oct 11, 2023 2:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowser click
Replies: 16
Views: 934

Re: TFileXLS

Cell property .WrapText = .T.
.value:={"Text"+chr(10)+"text"}
by Natter
Fri Sep 29, 2023 12:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TFileXLS
Replies: 4
Views: 446

Re: TFileXLS

What means ?
break within a cell


Change cell properties or programmatically enter text with a line break ?
by Natter
Fri Sep 29, 2023 5:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TFileXLS
Replies: 4
Views: 446

TFileXLS

Hey guys, This is a query about TFileXLS. How do I force the text to break within a cell. +------------------------------+------------------------------+-------------------------------------+ | XXXXXXXXXXXXXXXXXX | ............................. |.................................... ...
by oliveiros junior
Fri Sep 29, 2023 1:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TFileXLS
Replies: 4
Views: 446

Re: Reason for closing DBF file

... visualizar con browseConsulta(), no disponible :"+cAliTab) RETURN NIL ENDIF @ 0,0 XBROWSE oBrwFW2 OF oPanBrw; AUTOSORT FOOTERS FASTEDIT LINES CELL
by russimicro
Mon Sep 18, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reason for closing DBF file
Replies: 23
Views: 1162

Copy & paste with a single mouse clic, how?

... So far so good, now I require, if possible, that with just one mouse click (Right or Left) on a cell paste the stored value, without having to use RETURN + CTRL+ V+RETURN. Is it possible?, do you have a sample? With Best regards
by Armando
Tue Sep 12, 2023 6:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy & paste with a single mouse clic, how?
Replies: 3
Views: 270

Re: not ISOEM(), ISANSI() or IsUTF8()

... := .t. ) We have checked and the OEM to ANSI translations are all correct. You can also edit, modify and save data through inline cell-edit. Not only inline-edit, but you can click Add and Edit buttons of XBROWSER window and edit the data. You see the strings in ANSI, edit and ...
by nageswaragunupudi
Sun Sep 03, 2023 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 2099

error TXBROWSE:CARGOS

... ; headers "Nombre", "Apellido", ; "CargoArea" ; Sizes 250, 250, 250 ; ALIAS AliasRA autosort FASTEDIT LINES CELL font ofontBR // BACKGROUND aGrad HORIZONTAL colorxbrw( oRApertur, .f. ) WITH OBJECT oRApertur:Nombre :bOnPostEdit := { | o, x, k | RApertur->nombre ...
by jpcavagnaro
Wed Aug 30, 2023 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error TXBROWSE:CARGOS
Replies: 3
Views: 282

Re: Characters from different code tables

... oItalicreturn nil https://imagizer.imageshack.com/v2/xq70/924/qRscTw.png Now you have to use this function to paint text in a cell by defining your own codeblock: oCol:bPaintText This codeblock is evaluated like this: Eval( ::bPaintText, Self, hDC, cStrData, oRect:aRect, ...
by nageswaragunupudi
Tue Aug 29, 2023 4:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Characters from different code tables
Replies: 5
Views: 278

Re: Characters from different code tables

Good.
Is it possible to use different fonts in the same row (not in different rows) of the cell ?
by Natter
Tue Aug 29, 2023 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Characters from different code tables
Replies: 5
Views: 278

Characters from different code tables

Hi,

Is it possible to show text in the xBrowse cell with characters inserted into it from another code table
(for example, superscript characters of space or volume. As in Word/Excel) ?
by Natter
Tue Aug 29, 2023 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Characters from different code tables
Replies: 5
Views: 278

Re: ERROR XBROWSE CON MERGEVERT

... Realizado","Detalle/Observaciones"; COLSIZES 150,150,250; ARRAY acDatos UPDATE FOOTERS LINES AUTOCOLS CELL olbx1:l2007:=.t. olbx1:gotop() olbx1:bClrStd:={|| aClrCol [ olbx1:keyno%2+1]} olbx1:bClrSel:={|| { nRGB( 0, 0,255), aGradBarSel } } olbx1:bClrSelFocus ...
by elmoiquique
Mon Aug 28, 2023 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR XBROWSE CON MERGEVERT
Replies: 8
Views: 570

Filter y MakeTotals en xBrowse (to Mr. Nagues)

... ; JUSTIFY AL_CENTER,AL_LEFT,AL_RIGHT,AL_CENTER,AL_RIGHT,AL_RIGHT,AL_RIGHT,AL_RIGHT ; ARRAY COMPONENTES AUTOCOLS FOOTERS LINES CELL OF oDlg oBrw:aFilter :=aDataFilter oBrw:aCols[ 3]:nEditType :=EDIT_GET oBrw:aCols[ 3]:bOnPostEdit :={|oCol,xVal,nKey| If(nKey==VK_RETURN,(COMPONENTES[oBrw:nArrayAt][ ...
by TOTOVIOTTI
Mon Aug 28, 2023 1:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Filter y MakeTotals en xBrowse (to Mr. Nagues)
Replies: 0
Views: 192

Re: Una más sobre xBrowse (SOLUCIONADO)

nageswaragunupudi wrote: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?


Mr. Rao:

Thanks, I will comment on the problems

Regards
by Armando
Mon Aug 21, 2023 4:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una más sobre xBrowse (SOLUCIONADO)
Replies: 3
Views: 229
PreviousNext

Return to advanced search