Search found 33 matches: hdr

Return to advanced search

Re: Problem with xBrowse (Fixed)

Armando, The problem is related with xBrowse. If you run your example without including the xBrowse instantiation @ oBar:nHeight, 0 XBROWSE oBrw SIZE 0,-30 PIXEL OF oDlg ; DATA SOURCE oRsHdr ; COLUMNS "HDR_FOL","HDR_FDM","HDR_REF",; "HDR_EOS",; "HDR_TOU&q...
by Cgallegoa
Tue Jun 06, 2023 8:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2120

Re: Problem with xBrowse

Mr. Rao:

Could you please add the HDR_SUC column and with LEFT JOIN access the BRANCHES table to obtain the name of the branch
and display it in the BROWSE?

In an input movement the HDR_SUC column must be null

With best regards
by Armando
Wed May 31, 2023 12:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2120

Re: Problem with xBrowse

Mr. Rao: Thank you for you help. I have checked and there is no situation like the one you mention, in fact there is no DELETE code Above you can see all the code and all the error.log file. the first time I enter with the empty table, the two records are added , one input and the next output, and t...
by Armando
Sun May 28, 2023 2:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2120

Re: Antonio, tu ayuda por favor

Armando

Has probado a eliminar esta linea ?

Code: Select all  Expand view
oRsHdr:Fields("HDR_SUC"):Value   := AdoNull()   // Only out movs has value


En el movimiento de salida no grabas nada en el campo HDR_REF.
¿ qué ocurre si no grabas nada en el campo HDR_SUC ?

Saludos
by JESUS MARIN
Fri May 26, 2023 5:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Antonio, tu ayuda por favor
Replies: 5
Views: 367

Re: Antonio, tu ayuda por favor

Master Antonio y Jesús Marin: Agradezco tu interés y apoyo, pero no, ninguna de las sugerencias solucionó el problema. Como bien analizaste, la primera vez que entro con la tabla vacía, se agregan los dos registros, uno de entrada y el siguiente de salida, y se muestran en el browse sin problema. Al...
by Armando
Fri May 26, 2023 4:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Antonio, tu ayuda por favor
Replies: 5
Views: 367

Re: Problem with xBrowse

Mr. Rao: First, thank you for yor interest, here is the error log file. If you prefer, give me an email address to send you a self-contained program Application =========== Path and name: C:\TestXbrw\TestXBrw.Exe (32 bits) Size: 4,218,368 bytes Compiler version: Harbour 3.2.0dev (r1904111533) FiveWi...
by Armando
Tue May 16, 2023 5:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 2120

El identificador de fila se refirió a una fila eliminada o a

Saludos al foro: Me he dado varios frentazos tratando de encontrar mi falla, tengo dos PRGs en cada uno tengo el mismo código (según yo) pero en uno funciona de 100 pero en el otro me tira el error descrito "El identificador de fila se refirió a una fila eliminada o a una fila marcada para elim...
by Armando
Fri May 05, 2023 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: El identificador de fila se refirió a una fila eliminada o a
Replies: 0
Views: 181

Re: Problema con xBrowse

BTW, the HDR_CLI field is a NULL field type, some records has a null value, some records has a number value. That is the reason, we used Empty() XBrowse internally translates the expression "IF(EMPTY(HDR_CLI),HDR_TOT,0.00)" into a codeblock like this and assigns to oCol:bEditValue :bEditV...
by nageswaragunupudi
Sat Apr 30, 2022 4:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con xBrowse (SOLUCIONADO)
Replies: 11
Views: 769

Re: Problema con xBrowse

Mr Rao: I'm afraid your advise does not work because don't show the values, here is my full code             REDEFINE XBROWSE oBrw ID 200 OF oDlg;            DATASOURCE oRsHdr;                COLUMNS "HDR_FOL",;                  "HDR_CLI",;                  "CLI_NOM",; ...
by Armando
Fri Apr 29, 2022 4:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con xBrowse (SOLUCIONADO)
Replies: 11
Views: 769

Re: Picture para campo Time()

Mr. Rao: Using this code xBrowse oRsHdrFASTEDIT  Everything is ok, but I don't use that code I use this one             REDEFINE XBROWSE oBrw ID 200 OF oDlg;                DATASOURCE oRsHdr;                COLUMNS "HDR_FOL","HDR_CTD","HDR_IMP","HDR_CAN","...
by Armando
Sat Mar 12, 2022 3:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Picture para campo Time() (Resuelto)
Replies: 14
Views: 1293

Re: Picture para campo Time()

oRsHdr:Fields("HDR_HDV"):Value := Time() <==========

This is working for me.
by nageswaragunupudi
Fri Mar 11, 2022 7:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Picture para campo Time() (Resuelto)
Replies: 14
Views: 1293

Re: Se puede usar el nombre de una columna?

Francisco: Primero, gracias por el apoyo Fijate que me tira error // WITH OBJECT :aCols[08] WITH OBJECT oBrw:HDR_GAS :nFooterType := AGGR_SUM :bSumCondition := { || ! oRsHdr:Fields("HDR_CAN"):Value } :cFooterPicture := "@Z 9,999,999,999.99" END Saludos Lo hago asi: (fijate que l...
by FranciscoA
Thu Nov 12, 2020 3:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se puede usar el nombre de una columna? (SOLUCIONADO)
Replies: 7
Views: 556

Re: Se puede usar el nombre de una columna?

Francisco: Primero, gracias por el apoyo Fijate que me tira error // WITH OBJECT :aCols[08] WITH OBJECT oBrw:HDR_GAS :nFooterType := AGGR_SUM :bSumCondition := { || ! oRsHdr:Fields("HDR_CAN"):Value } :cFooterPicture := "@Z 9,999,999,999.99" END Saludos
by Armando
Thu Nov 12, 2020 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se puede usar el nombre de una columna? (SOLUCIONADO)
Replies: 7
Views: 556

Re: New FTDN February/Febrero 2017 (FWH 17.02)

* Class Report: Enhancement: Can now define a column to print progressbar also. Syntax: COLUMN HEADER <hdr> DATA <data> PROGRESSBAR MAXVAL <nmaxval> ; COLORS <clr1>,<clr2> <clr1>,<clr2> can be either colors, alphacolors, gradients, ...
by Silvio.Falconi
Sun Mar 19, 2017 2:48 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2017 (FWH 17.02)
Replies: 2
Views: 2078

New FTDN February/Febrero 2017 (FWH 17.02)

... now configures progressbar columns also * Class Report: Enhancement: Can now define a column to print progressbar also. Syntax: COLUMN HEADER <hdr> DATA <data> PROGRESSBAR MAXVAL <nmaxval> ; COLORS <clr1>,<clr2> <clr1>,<clr2> can be either colors, alphacolors, ...
by Antonio Linares
Fri Feb 24, 2017 12:37 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2017 (FWH 17.02)
Replies: 2
Views: 2078
Next

Return to advanced search