Search found 64 matches: refreshes

Return to advanced search

Re: Duda con oGet:cText

Use cText

cText := uNewValue
or
cText( uNewValue )

Method cText( uNewValue ) calls oGet:VarPut( uNewValue ) and in addition refreshes and sets new text in window.

Do not use SetText()
by nageswaragunupudi
Tue Jun 18, 2019 6:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Duda con oGet:cText
Replies: 5
Views: 676

Re: ERROR __OBJDERIVEDFROM

... an error at our end till now. A few points to be kept in mind always: 1) bEditWhen and bEditValid should avoid any screen i/o including browse refreshes. Only purpose is to return a logical value. In particular, please avoid calling PostEdit() again from inside this codeblock. 2) Recommended ...
by nageswaragunupudi
Fri Feb 15, 2019 2:55 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR __OBJDERIVEDFROM
Replies: 14
Views: 1958

New FTDN June/Junio 2018 (FWH 18.06)

... [@lDeleted] ) --> lChanged Checks if the record nRec (default current record) is changed by another user on the network after read and also refreshes the record with current changes. If the record was deleted by other user, lDeleted also set to .t. and the record pointer moves to next record. ...
by Antonio Linares
Sat Sep 01, 2018 8:33 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2018 (FWH 18.06)
Replies: 1
Views: 1959

Re: MariaDB BlankRow() returns with additional element/field

Mr. Rao,

I got it!

oRs:ReSync()
oRs:SyncChild()

refreshes the oRs:oChild...

:P
by fraxzi
Sat Jun 09, 2018 12:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB BlankRow() returns with additional ... (SOLVED)
Replies: 13
Views: 1750

Re: Problem with upgrade to FWH 2018 - 02

Dear Rao,

That was better, however the new image is displayed on top of old image. Eventually, bitmap refreshes correctly. I have added the following code with no luck.

oBmp:Refresh()
oWnd:Refresh()
SysRefresh()
by cdmmaui
Wed Apr 25, 2018 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with upgrade to FWH 2018 - 02
Replies: 13
Views: 3061

Re: xBrowse footer counting on cell / field-condition ?

... value to the dbf, takes care of all locking issues and also makes necessary modifications to the totals. If indexed column is modified, xbrowse refreshes the data and otherwise, it refreshes the row only. Instead of doing yourself, just tell xbrowse what to do and it does it properly and completely.
by nageswaragunupudi
Wed Mar 07, 2018 10:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse footer counting on cell / field-condition ?
Replies: 12
Views: 2369

XBrowse MakeTotals: Improvements in FWH 16.12 and 17.01

... value of a cell is changed with inline edit, xbrowse recomputes the aggregates using the difference between the original and modified values and refreshes the footer without having the call MakeTotals() again. This recalculation feature highly improves the performance. Issues: However this recalculation ...
by nageswaragunupudi
Fri Feb 03, 2017 3:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse MakeTotals: Improvements in FWH 16.12 and 17.01
Replies: 8
Views: 5619

Re: xBrowse buffer with Array

... refer to the same array oStkSrv:aStkPar. This is an array being read and maintained by the class oStkSrv. If for some reason the class oStkSrv refreshes aStkPar from the dbf, the changes made by the Get to the array can be lost. One suggestion is to use aStkParClone := AClone( oStkSrv:aStkPar ...
by nageswaragunupudi
Thu Feb 02, 2017 2:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse buffer with Array
Replies: 4
Views: 1068

Re: xBrowse buffer with Array

... OF oFldSI:aDialogs[1] ;      MESSAGE "The actual cost paid per item" UPDATE  This is a "Save" button which actually refreshes the display of the xbrowse with the new value.     DEFINE BUTTON OF oBarStk RESOURCE "HRSAVE" PROMPT "Save" TOOLTIP "Save ...
by TimStone
Thu Feb 02, 2017 3:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse buffer with Array
Replies: 4
Views: 1068

Re: GET for xBrowse

... of what is being input shows in the get at the top of the column. 4) Click on a different indexed column and the previous get closes, the order refreshes, and then a get opens in the top row of the newly selected column. All of this happens now, except for the opening of the Get for the column. ...
by TimStone
Tue Sep 20, 2016 9:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GET for xBrowse
Replies: 8
Views: 2016

Re: FWH: MySql/MariaDB: RowSet object

... data about records deleted by other users. We need different approach for that. ReSync() Reads from the server data of the current record only and refreshes data of current record. Works if the rowset contains primary/unique key or all other values together can uniquely identify a record on the ...
by nageswaragunupudi
Thu Jul 21, 2016 1:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19758

Re: Nuevo FWH 16.05

... Resync may have limitations. Note: While other libs read entire table from the server again after every modification and save, FWH implementation refreshes current record only after save, using ReSync() method. This should make a difference in performance. 3) DefinedSize logitud campo, ........... ...
by nageswaragunupudi
Sun Jul 17, 2016 12:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 16.05
Replies: 12
Views: 3790

FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

... filters are maintained and tries to reposition to the same record. METHOD ReSync( [aParams] ) Reads only the current record from the server and refreshes the contents of the current row. This is possible only when the RowSet contains primary key. If Sql with parameters was used to open the RowSet, ...
by nageswaragunupudi
Fri Jul 01, 2016 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 28603

Re: Drawing on a TImage and save (revamped) :-)

Enrico, I will test using IMAGE-SCROLL That means : 1. move to the area You want to show and draw. DONT move again ( refreshes the image ), otherwise You will delete the painting. I didn't test this solution. I will find out, if the COMPLETE image with painting-position will be saved. ...
by ukoenig
Fri Apr 04, 2014 11:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drawing on a TImage and save (revamped) :-) [Solved]
Replies: 41
Views: 8397

Re: Network Issue

... As I type ( no get needed) the highlight repositions on the list. I display the list in the lower part of the dialog and data on top. ON CHANGE refreshes the gets. It's virtually instantaneous. CDX is optimized for filters if they need to be used. Sent from my iPad using Tapatalk HD
by TimStone
Sat Jan 11, 2014 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Network Issue
Replies: 36
Views: 10973
PreviousNext

Return to advanced search