Search found 166 matches: refreshing

Return to advanced search

Re: Fighting Xbrowse and lozing !!!

... about the most common cases of our daily work? :wink: I'd be glad for this because I'm often unsure about the xBrowse internals concerning refreshing and updating the display of data values. Regards, Detlef
by Detlef
Thu Dec 22, 2022 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fighting Xbrowse and lozing !!!
Replies: 18
Views: 1567

Re: Contextual visualization of images

You can use a timer for this delay.

It will give you the change to browse without refreshing to ximage during the time set.

Here is the link to the topic :

viewtopic.php?f=3&t=34782
by Marc Venken
Mon Nov 14, 2022 8:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Contextual visualization of images
Replies: 2
Views: 317

Re: Search on a Xbrowse

... )      RETURN (NIL)    at init the buttonbar is not visible and also the get and the combobox ...why ? I tried also with a refreshing of controls ACTIVATE DIALOG oDlgLook CENTERED ; ON INIT (oDlgLook:Resize(), RefreshButtons ( otoolBar ) ) RETURN (NIL) //--------------------------------------------------------------------// ...
by Silvio.Falconi
Thu Feb 24, 2022 11:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search on a Xbrowse
Replies: 19
Views: 1198

Re: Speedtest DBF vs. LetoDB and mySQL

Marc, First I notice that you are calling a SETSCOPE function, and refreshing two images for every record movement. That is what is slowing down your browse. Try taking the entire :bChange line out and then test the speed. Also, if the images are on the server, ...
by James Bott
Mon Oct 18, 2021 11:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Speedtest DBF vs. LetoDB and mySQL
Replies: 22
Views: 1775

Re: Get search on TopBar of a Xbrowse

... of Nages adding the get of search on topbar xbrowse https://i.postimg.cc/RZTDxft7/topbar.png while the combobox seem to work good refreshing the xbrowse , the get not search any info    #include "fivewin.ch"    REQUEST DBFCDX    //----------------------------------------------------------------------------//  ...
by Silvio.Falconi
Mon May 31, 2021 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get search on TopBar of a Xbrowse
Replies: 1
Views: 364

Libcurl - Access_violation

... from HB_HRBDO(0) Does anybody know what is causing this strange behaviour? by the way, preventing multiclik is not a solution because refreshing the page multiple times also causes this problem
by ricbarraes
Tue Feb 09, 2021 1:42 pm
 
Forum: mod_harbour
Topic: Libcurl - Access_violation
Replies: 4
Views: 584

Re: NO RESPONSE = TITLETEXT Refresh() Arrays...???

... the existing controls resulting in smudging. If my understanding is correct, we advise you to create the controls only the first time and when refreshing data subsequently, you only change the data displayed by oControl:SetText( cNewText ). The code to refresh the data can be something like ...
by nageswaragunupudi
Sun Jun 07, 2020 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TITLETEXT Refresh() Arrays...(SOLVED)
Replies: 2
Views: 505

Erase btnbmp from another btnbmp, the space remains

I put some small btns inside a big btnbmp when I go to delete one, the space remains How can I go about refreshing the big btnbmp so I can't see the space created? I realize that it is difficult to understand so I thought I would like to make you a small movie to show you what ...
by Silvio.Falconi
Mon Mar 23, 2020 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Erase btnbmp from another btnbmp, the space remains
Replies: 1
Views: 287

Re: xbrowse too slow

... or by pages Are you now using oLotto:setBuffer(.F.)? - when I go to print a record and refresh the xbrowse (doing also setfocus) Why are you refreshing the browse after printing? - when I insert a record and return to xbrowse (refresh and setfocus) This should take just a second or less. ...
by James Bott
Thu Sep 19, 2019 7:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse too slow
Replies: 30
Views: 4255

Re: XBROWSE CheckBOX SelectALL

... on single click, because single click is meant for repositioning the row, This sample also demonstrates automatic recalculation of footers and refreshing without any extra code. Please also note that the sum of salary column is a conditional sum of selected rows only.
by nageswaragunupudi
Wed Apr 03, 2019 12:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE CheckBOX SelectALL
Replies: 2
Views: 741

Re: SQL insert DateTime

... aData )  updates the data where room_id already exists and inserts where room_id does not already exist. This is very useful for refreshing the data on the mysql server with latest additions and modifications in the dbf table. The Insert/Upsert method is generic. There is a specific ...
by nageswaragunupudi
Fri Dec 07, 2018 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SQL insert DateTime
Replies: 2
Views: 1169

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

Hi Rao,

Strangely, I put the oRs := oCn:RowSet( cSql, {'param'} ) on my init variable function (as once-only declaration) and put oRs:Append() | oRs:SyncChild() | oBrw:Refresh()...
This way it SOLVED my issues refreshing oRs:oChild datasource of xBrowse ...

Moving forward to another task...

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

Re: Refreshing xBrowse Problem

Thanks a lot...it works perfect

Greetings from Chile
Adolfo
by Adolfo
Wed May 09, 2018 12:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Refreshing xBrowse Problem
Replies: 2
Views: 591

Re: Refreshing xBrowse Problem

Please try this sample. You may adopt this logic to your situation   local oCn, oRs, oRs2   local oDlg, oBrw   oCn   := FW_DemoDB()   oRs   := oCn:RowSet( "SELECT first,city,state,salary FROM customer where state = 'NY'" )   DEFINE DIALOG oDlg SIZE 600,400 PIXEL TRUEPIXEL  ...
by nageswaragunupudi
Tue May 08, 2018 3:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Refreshing xBrowse Problem
Replies: 2
Views: 591

Refreshing xBrowse Problem

Mr Rao. I have a xBrowse which I need to update with a different FwhMysql rowset. When I created it I do oDbDat:=oSvr:Rowset(xSelect) oBrow:setMysql(oDbDat,.T.,.T.) Later on I need to change the select (same fields, but different data), then I do. oDbNew:=oSvr:Rowset(NewSelect) oDbDat:=oDbNew oBrw:R...
by Adolfo
Tue May 08, 2018 3:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Refreshing xBrowse Problem
Replies: 2
Views: 591
Next

Return to advanced search