Search found 42 matches: nedittypes

Return to advanced search

Re: Request : function GetSerialCol()

hi

i can add new Record, it was a Typo :roll:

---

i can use bLDblClick when NOT set nEditTypes
Code: Select all  Expand view
*      :nEditTypes := EDIT_GET
      :bLDblClick := { || oBrw:EditSource() }

it must before :bDataRow := Codeblock
by Jimmy
Wed Sep 27, 2023 3:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Request : function GetSerialCol()
Replies: 8
Views: 596

Re: Mr. Rao, more about xBrowse

XBrowse is not that simple class. Well all this is handled in the Error Handler. There is no DATA nEditTypes in XBrowse, so this message goes to error handler. There it checks if there is any data of a Column class with that name without trailing "s" If exists ...
by nageswaragunupudi
Wed Aug 23, 2023 7:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, more about xBrowse
Replies: 11
Views: 590

Re: Mr. Rao, more about xBrowse

... want to set any data of each column (for example "nEditType" ), instead of setting oCol:nEditType of each every column, you can set oBrw:nEditTypes := n ( nEditType _+ "s" ) i.e., use "plural" Out of interest : In the source class, i don't see these data as plural ...
by Marc Venken
Wed Aug 23, 2023 7:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, more about xBrowse
Replies: 11
Views: 590

Re: Mr. Rao, more about xBrowse

... want to set any data of each column (for example "nEditType" ), instead of setting oCol:nEditType of each every column, you can set oBrw:nEditTypes := n ( nEditType _+ "s" ) i.e., use "plural" If we want to set the same value for any DATA of every column, we use oBrw:datas ...
by nageswaragunupudi
Tue Aug 22, 2023 8:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, more about xBrowse
Replies: 11
Views: 590

Re: Mr. Rao, more about xBrowse

... want to set any data of each column (for example "nEditType" ), instead of setting oCol:nEditType of each every column, you can set oBrw:nEditTypes := n ( nEditType _+ "s" ) i.e., use "plural"
by nageswaragunupudi
Tue Aug 22, 2023 12:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, more about xBrowse
Replies: 11
Views: 590

Mr. Rao, more about xBrowse

Mr. Rao: I have the following code, I need the same code for all the columns of the browse, something like :nEditTypes := 1, I know that I can repeat it as many columns as the browse has, the problem is that I don't know how many columns the browse has.         ...
by Armando
Mon Aug 21, 2023 4:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, more about xBrowse
Replies: 11
Views: 590

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

Perfecto, ahi funciona. Tuve que agregar la clausula :nEditTypes := 1 para que permitiera editar y pegar #include "Fivewin.ch"#include "xbrowse.ch"******************************************************************* Importar ArticulosFUNCTION ...
by cmsoft
Fri Aug 18, 2023 10:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1395

Xbrowse, FastEdit y xBrw:Edit() RESUELTO

... xbrowse y también hacerlo en formulario a través de oBrw:Edit() No logro que sea un browse editable pese a que me aseguré de que la cláusula oBrw:nEditTypes := EDIT_GET estuviera. No puedo editar en línea ni tampoco hacerlo con el oBrw:Edit. Por lo demás todo funciona Supongo que para variar soy ...
by jose_murugosa
Mon Jul 17, 2023 7:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, FastEdit y xBrw:Edit() RESUELTO
Replies: 7
Views: 331

Re: Cursor in XBROWSE "down" instead of "right" after ENTER

i found "Problem" why it move "right" i have to use Option FASTEDIT and oBrw:nEditTypes := EDIT_GET for ENTER when use EDIT_NONE it move "right" after ENTER so i must use "other" Key for oBrw:EditSource(()       CASE nKey = VK_ADD  ...
by Jimmy
Mon Jun 12, 2023 4:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cursor in XBROWSE "down" instead of "right" after ENTER
Replies: 2
Views: 202

Re: Fivewin and ADO

what is Code: :nEditTypes := { 1,1,1 } i "normal" knew Code: :nEditTypes := EDIT_GET so what is Array mean :?: oBrw:anydatas := uVal is a a short cut for AEval( oBrw:aCols, { |o| o:anydata := uVal } )  ...
by nageswaragunupudi
Fri Jun 09, 2023 8:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3838

Re: Fivewin and ADO

... in XBROWSE --- i wonder "how" GetExcelRange() will work as it "only" Return oRange, not Recorsd-Set :?: what is   :nEditTypes := { 1,1,1 } i "normal" knew   :nEditTypes := EDIT_GET so what is Array mean :?: btw. we NEED a Description of XBROWSE ...
by Jimmy
Fri Jun 09, 2023 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3838

Re: XBROWSE : METHOD DataRow() -> TDataRow()

WITH OBJECT oBrw :nEditTypes := EDIT_GET :bLDClickDatas := { || oBrw:EditSource() } // or { || youreditfunction() } :CreateFromCode() END You can always make your own editdialog in all style you like. We recommend oBrw:bEdit := { ...
by nageswaragunupudi
Sat May 06, 2023 1:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 306

Re: XBROWSE : METHOD DataRow() -> TDataRow()

WITH OBJECT oBrw
:nEditTypes := EDIT_GET
:bLDClickDatas := { || oBrw:EditSource() } // or { || youreditfunction() }
:CreateFromCode()
END

You can always make your own editdialog in all style you like.
by Marc Venken
Fri May 05, 2023 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : METHOD DataRow() -> TDataRow()
Replies: 5
Views: 306

Re: XBROWSE : "Edit" only for Colume 3 and 4

oBrw:nEditTypes := EDIT_GET This is a short cut for assigning EDIT_GET to nEditType of ALL COLUMNS. In your case please set: oBrw:aCols[ 3 ]:nEditType := EDIT_GEToBrw:aCols[ 4 ]:nEditType := EDIT_GET leaving ...
by nageswaragunupudi
Mon Apr 03, 2023 3:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : "Edit" only for Colume 3 and 4
Replies: 2
Views: 250

XBROWSE : "Edit" only for Colume 3 and 4

hi,

i have a XBROWSE using DbStruct() Array
i use oBrw:nEditTypes := EDIT_GET

but i only want to "edit" LEN and DEC of Structure
so how can i "block" Column 1 and 2 in XBROWSE :?:
by Jimmy
Mon Apr 03, 2023 3:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : "Edit" only for Colume 3 and 4
Replies: 2
Views: 250
Next

Return to advanced search