Search found 44 matches: nedittypes

Return to advanced search

Re: Edit cell on xbrowse

... := LTrim( Str( i, 2 ) ) } ) :bEditValid := {| oGet | if(oGet:value > 0 .and. oGet:value < 91,.t.,(MsgInfo("Solo 0 a 90"),.f.)) } :nEditTypes := EDIT_GET :nWidths := 24 :lDrawBorder := .t. .... END
by Silvio.Falconi
Tue Oct 29, 2024 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Edit cell on xbrowse
Replies: 5
Views: 213

Edit cell on xbrowse

on a xbrowse I use

Image


:nEditTypes := EDIT_GET

the user can insert numbers But I wish the use can insert only number of two digit from 1 to 90

How I can resolve ?
by Silvio.Falconi
Mon Oct 28, 2024 6:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Edit cell on xbrowse
Replies: 5
Views: 213

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: 1150

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: 981

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: 981

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: 981

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: 981

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: 981

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: 2606

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: 653

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: 258

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: 5883

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: 5883

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: 400

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: 400
Next

Return to advanced search