Search found 222 matches: requery

Return to advanced search

Re: Problema super raro

...         CATCH               FW_ShowAdoError(oApp:oCon)            END            oRsDet:MoveNext()         ENDDO//         oRsWrk:ReQuery()         oRsWrk:MoveFirst()      ENDIF  If I remove the oRsWrk:ReQuery() code xBrowse is not shown, please see the images below In ...
by Armando
Sat Mar 23, 2024 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2128

Re: Problema super raro

Code: Select all  Expand view
TRY
   oRsWrk:UpDate()
CATCH
   ? "Error"
   FW_ShowAdoError( oCn )
END
//   oRsWrk:ReQuery()
 


No need to use ReQuery() after oRs:Update().
by nageswaragunupudi
Sat Mar 23, 2024 8:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2128

Refrescar el Tree en un xBrowse

... donde se pueden modifican datos de la rama entre otros el texto mismo de la rama, pero el Tree (browse) no se refresca, he intentado con el Requery() y oBrw:Refresh() y nada no tengo éxito. También será necesario agregar nuevas ramas. He buscado en el foro y hay muchas preguntas y respuestas ...
by Armando
Tue Feb 06, 2024 3:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Refrescar el Tree en un xBrowse
Replies: 3
Views: 156

Re: RAO - refresh, xbrowser

he tratado de todas las maneras y no me funciona.

1) ::oQry:requery()

2) ::oQry:refresh()

::oBrw:skip()
::oBrw:refresh()
by goosfancito
Sat Jan 27, 2024 6:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO - refresh, xbrowser
Replies: 2
Views: 448

Re: Cambiar Tree Completo Sobre xBrowse (solucionado)

...   ENDWITH PERO ni este ni ningun browser. me esta actualizando los datos, tengo que salir del dialogo y volver a entrar. y ya probe con :oqry:requery las consultas las hago por procedimientos almacenados METHOD actualizarTag( x )  CLASS TCliente   DO CASE   CASE ...
by goosfancito
Sun Jan 21, 2024 6:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar Tree Completo Sobre xBrowse (solucionado)
Replies: 9
Views: 764

xbrowse error wih lMergeVert

Hi Guys, I have a xbrowse built over a mysql rowset and using lMergeVert. It´s working fine. Always I try to do an oRs:Requery() to update data. Is Happening the error bellow: Compiler version: Harbour 3.2.0dev (r2008190002)   FiveWin  Version: FWH 21.04   Windows version: ...
by vilian
Thu Dec 21, 2023 12:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse error wih lMergeVert
Replies: 1
Views: 223

Update eb MariaDB por el lugar

... 'mes1', 'mes2', 'mes3','mes4,..................'mes12' }, { QUIERO ACTUAZAR MES3 Y MES4 }, { { 'id', numero } } ) oCon4:Execute(cSql4) oRs4:Requery() Muchas gracias Saludos. Ruben Dario Fernandez
by D.Fernandez
Thu Jul 13, 2023 8:07 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Update eb MariaDB por el lugar
Replies: 3
Views: 321

Re: tdolphin de fivewin

Not correct.
XBrowse does not requery with each movement.
It is dolphin that requeries the entire table whenever a change is made. Not xbrowse.
by nageswaragunupudi
Wed Nov 30, 2022 4:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: tdolphin de fivewin
Replies: 7
Views: 748

Re: Problem With oRs:Requery()

Am I doing something worng? Yes, please. You are mixing up ADO with FWH built-in MySql/MariaDB library classes. ADO connection object does not have RowSet(...) method. ADO is a product of Microsoft. This is the suggested approach: oCn   := FW_OpenAdoConnection( { "MSSQL", xSOURCE...
by nageswaragunupudi
Tue Oct 18, 2022 3:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem With oRs:Requery()
Replies: 4
Views: 518

Re: Problem With oRs:Requery()

Mr Rao, I have Fivewin 19.12, Can I request recordsets from MSSQl using parameter with my versión? Using the code: cCadsql1:="SELECT e.ITEMNMBR, a.ITEMDESC, e.LOCNCODE, e.QTYONHND, e.ATYALLOC, e.QTYONHND - e.ATYALLOC, a.SELNGUOM, IV40201.baseuofm,"+;" e.QTYSOLD, e.QTYRTRND, e.QTYDMGED...
by mariordz
Mon Oct 17, 2022 10:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem With oRs:Requery()
Replies: 4
Views: 518

Re: desplazar en Xbrowse

kpidata:

Entonces, creo, es una combinación de la respuesta de Javier (Saludos Javier) y la mía

Hacer un timer que cada n segundos haga el ReQuery() y el Refresh()

Saludos
by Armando
Mon Jul 11, 2022 4:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: desplazar en Xbrowse
Replies: 8
Views: 668

Re: desplazar en Xbrowse

kpidata:

La información que proporcionas es escasa, asumo que algún
otro usuario agrega más líneas y esas son la que no se ven.

Si es el caso, te recomiendo las siguientes dos líneas de código:

oRs:Requery()
oBrw:Refresh()

Espero sirvan de algo

Saludos
by Armando
Mon Jul 11, 2022 3:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: desplazar en Xbrowse
Replies: 8
Views: 668

Re: New FTDN March/Marzo 2022 (FWH 22.03)

... parámetros OUT/INOUT en los procedimientos almacenados: oCn:ProcedureName( a, @b ) --> oRs Ahora el parámetro out devuelve el valor en b. oRs:Requery( a, @b ) // El parámetro Out se devuelve en b * FWMariaRowSet: - FieldGet( nFldNo ): Se ha solucionado el error en tiempo de ejecución cuando ...
by Antonio Linares
Mon Apr 11, 2022 4:11 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2022 (FWH 22.03)
Replies: 1
Views: 624

New FTDN March/Marzo 2022 (FWH 22.03)

... - Improved handling of OUT/INOUT parameters in Stored Procedures: oCn:ProcedureName( a, @b ) --> oRs Now out param returns value in b. oRs:Requery( a, @b ) // Out param is returned in b * FWMariaRowSet: - FieldGet( nFldNo ): Runtime error when nFldNo is out or range is fixed. - Filter expression ...
by Antonio Linares
Sun Apr 10, 2022 7:02 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2022 (FWH 22.03)
Replies: 1
Views: 624

Re: Problema con REQUERY

nageswaragunupudi wrote:If you do not have the revised version, please give me your mail and we will send you the revised version.


Please send me. I have sent an email to Antonio. Thank you.

Thanks
by goosfancito
Sat Apr 09, 2022 12:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con REQUERY
Replies: 4
Views: 342
Next

Return to advanced search