... from the Server again.
Requerying frequently makes the application sluggish.
There is a less known method
oRowSet:Refresh()
This method refreshes only those records which are updated by other users on the network after the RowSet is updated last.
But this works only if the table contains a ...
Search found 5 matches: refreshes
Searched query: refreshes
- Thu Sep 12, 2024 1:13 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Update data showed in xBrowse
- Replies: 13
- Views: 1557
- Fri Jun 09, 2023 6:27 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: simple image viewer - sample
- Replies: 3
- Views: 638
simple image viewer - sample
... Copy": This button copies the currently displayed image to the clipboard.
- "Paste": This button loads an image from the clipboard and refreshes the image display.
- "Save": This button saves the currently displayed image as "SAVED.JPG" and displays a message "saved as saved.jpg ...
- "Paste": This button loads an image from the clipboard and refreshes the image display.
- "Save": This button saves the currently displayed image as "SAVED.JPG" and displays a message "saved as saved.jpg ...
- Sat Dec 31, 2022 9:51 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Fighting Xbrowse and lozing !!!
- Replies: 18
- Views: 2926
Re: Fighting Xbrowse and lozing !!!
... good. Because our program reads an image only once from the disk and any subsequent painting is only from the memory (no disk access again), the screen refreshes will be very fast.
Btw, I just created and added a new function FW_SaveThumbnail( cImageFile, cThumbFile, nWidth, [nHeight] ) --> lSucess.
Btw, I just created and added a new function FW_SaveThumbnail( cImageFile, cThumbFile, nWidth, [nHeight] ) --> lSucess.
- Fri Dec 16, 2022 12:56 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: View deleted records in xBrowse
- Replies: 8
- Views: 1141
Re: View deleted records in xBrowse
... IF MsgYesNo( "Do you wish to display deleted records ?" )
SET DELETED OFF
ELSE
SET DELETED ON
ENDIF
RETURN NIL
The ACTION statement refreshes the browse after running the function.
3) When exiting the editor, the program executes SET DELETED ON
With these steps I eliminated my concern ...
SET DELETED OFF
ELSE
SET DELETED ON
ENDIF
RETURN NIL
The ACTION statement refreshes the browse after running the function.
3) When exiting the editor, the program executes SET DELETED ON
With these steps I eliminated my concern ...
- Sun Nov 13, 2022 9:26 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: tdolphin de fivewin
- Replies: 7
- Views: 908
Re: tdolphin de fivewin
... in one row is modified and saved,
TDolphin.
Saves the changes to one record and reads all records of the entire query.
If the query has 10000 records. Dolphin reads all 10000 records again.
Fivewin LIB and ADO.
Saves changes to one record and reads and refreshes that one record only.
Very fast.
TDolphin.
Saves the changes to one record and reads all records of the entire query.
If the query has 10000 records. Dolphin reads all 10000 records again.
Fivewin LIB and ADO.
Saves changes to one record and reads and refreshes that one record only.
Very fast.