Search found 415 matches: simpler

Return to advanced search

Re: xImage doubt

There is another simpler way to display images like above, without using XImage at all. This is a sample. #include "fivewin.ch"REQUEST DBFCDX//----------------------------------------------------------------------------//function ...
by nageswaragunupudi
Mon Nov 18, 2024 5:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xImage doubt
Replies: 17
Views: 3147

Re: xbrowse very slow vs Xbrowser

... Nobody compels us to use XBrowse only for every browse. We better use the most suitable browse for our requirements. In this case WBrowse is simpler and provides faster horizontal spanning speeds. You may consider WBrowse, wherever you do not require the extra screen-rich features of xbrowse. ...
by Silvio.Falconi
Thu Nov 07, 2024 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse very slow vs Xbrowser
Replies: 18
Views: 2144

Re: xbrowse very slow vs Xbrowser

... Nobody compels us to use XBrowse only for every browse. We better use the most suitable browse for our requirements. In this case WBrowse is simpler and provides faster horizontal spanning speeds. You may consider WBrowse, wherever you do not require the extra screen-rich features of xbrowse.
by nageswaragunupudi
Thu Nov 07, 2024 11:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse very slow vs Xbrowser
Replies: 18
Views: 2144

Re: xBrowse: A Vision for a Simpler, More Flexible Future

Dear Otto and friends, Mr. Rao has invested hours and hours, or better we should say, days and days to improve TXBrowse. I can only say "hat off" to Mr. Rao for sharing all that hard work with us. We may need years simply to catch the existing functionality that he has introduced in such g...
by Antonio Linares
Wed Nov 06, 2024 2:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: A Vision for a Simpler, More Flexible Future
Replies: 5
Views: 421

Re: xBrowse: A Vision for a Simpler, More Flexible Future

Hello friends, Based on the previous feedback, there seems to be little support for restructuring the xBrowse class. The community has reservations about a fundamental overhaul and considers the existing structure to be sufficient and robust for their use cases. Since the prospect of a comprehensive...
by Otto
Wed Nov 06, 2024 9:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: A Vision for a Simpler, More Flexible Future
Replies: 5
Views: 421

Re: xBrowse: A Vision for a Simpler, More Flexible Future

Hello Mark, nothing would change for you as an application developer. Everything would remain the same for you here. Only the source code of xBrowse would change. For example, if you look at the source code, everything is in one file. I think it should be structured more simply. At the moment, ther...
by Silvio.Falconi
Tue Nov 05, 2024 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: A Vision for a Simpler, More Flexible Future
Replies: 5
Views: 421

Re: xBrowse: A Vision for a Simpler, More Flexible Future

Hello Mark, nothing would change for you as an application developer. Everything would remain the same for you here. Only the source code of xBrowse would change. For example, if you look at the source code, everything is in one file. I think it should be structured more simply. At the moment, there...
by Otto
Tue Nov 05, 2024 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: A Vision for a Simpler, More Flexible Future
Replies: 5
Views: 421

Re: xBrowse: A Vision for a Simpler, More Flexible Future

The question will be : Is the FiveWin team interested in this kind of vision ? Are the FW users interested ? If I see the respons on this forum of many more visions you have about combinations in php/web/FW/Json .... we are almost lost there ))))) For myself, I like FW as it is, especialy Xbrowse. W...
by Marc Venken
Tue Nov 05, 2024 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: A Vision for a Simpler, More Flexible Future
Replies: 5
Views: 421

xBrowse: A Vision for a Simpler, More Flexible Future

... independent of the data source. Web Integration: Preparing for web applications with JSON data format and API support. The goal: to make xBrowse simpler, more scalable, and future-proof – for both desktop and web developers. Best regards, Otto
by Otto
Tue Nov 05, 2024 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse: A Vision for a Simpler, More Flexible Future
Replies: 5
Views: 421

Re: Extending SetScope()

... quite a few alternatives, including reading into an array, etc. but they reduce overall speeds and also require major changes. We need to look for simpler solutions without much change in our existing software. 1. Use Filter instead of Scope: I am sure you will not like this idea at all. Most of ...
by nageswaragunupudi
Sat Oct 19, 2024 3:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 1234

Re: Two monitors, show different windows

Please try this alternative approach also.
This may be simpler to code:
Code: Select all  Expand view  RUN
local oMonitor2   := FW_GetMonitor( 2 )
local oWnd2

DEFINE WINDOW oWnd2 FROM 50,10 TO 600,800 PIXEL

// create your controls

ACTIVATE WINDOW oWnd2 ON INIT oMonitor2:Move( oWnd2 )


Your feedback helps us.
by nageswaragunupudi
Wed Oct 09, 2024 3:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Two monitors, show different windows
Replies: 10
Views: 906

Re: Video Migration from DBF to SQL (MySQL/MariaDB) Mr. Rao

... where DBF files and the program are on the same server or for web applications. You can then remove a lot of source code, making everything simpler and more streamlined. Best regards, Otto
by Otto
Fri Sep 20, 2024 7:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Video Migration from DBF to SQL (MySQL/MariaDB) Mr. Rao
Replies: 5
Views: 646

Video Migration from DBF to SQL (MySQL/MariaDB) Mr. Rao

... you can optimize the processing for your specific use case, eliminating the overhead that generic SQL query parsing and execution might introduce. Simpler Infrastructure: Without the need for a full SQL server setup, you reduce infrastructure complexity. If your requirements are straightforward—like ...
by Otto
Thu Sep 19, 2024 10:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Video Migration from DBF to SQL (MySQL/MariaDB) Mr. Rao
Replies: 5
Views: 646

Re: slowness

... We need to actively check if the data changes. Sure, we can use Server-Sent Events (SSE), but I believe that for our specific use case, it’s simpler to work with a timer (JS interval). On the web, I use a technique where I monitor the file’s modification date with a "timer." A request ...
by Otto
Mon Sep 16, 2024 7:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: slowness
Replies: 76
Views: 9206

Re: scrollbars on tFolderEx

karinha wrote:Why don't you use a TBITMAP? Much simpler to control.

¿Por qué no utilizas un TBITMAP? Mucho más sencillo de controlar.

https://imgur.com/dQPaazc

Image

Regards, saludos.

Sorry karinha how run the resource Borland on 32/64 bit (win 7/10) ?
by Silvio.Falconi
Wed Sep 04, 2024 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: scrollbars on tFolderEx
Replies: 26
Views: 3779
Next

Return to advanced search