Search found 38 matches: require

Searched query: require

by Otto
Sat Dec 07, 2024 8:19 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Login with Cloudflare
Replies: 6
Views: 621

Re: Login with Cloudflare

... truly is a big responsibility to simply open a web server or RDP port to the WWW.
But when I occasionally noticed on ChatGPT that it also uses Cloudflare as its forefront, I decided to take a look at Cloudflare.
I was surprised to see that it’s free for the small scale we require.

Best regards,
Otto
by Antonio Linares
Sat Dec 07, 2024 5:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Login with Cloudflare
Replies: 6
Views: 621

Re: Login with Cloudflare

... When This Approach Makes Sense**:
- Small-to-medium applications where you want to minimize overhead.
- Internal tools or RDP setups that don't require public exposure.
- Scenarios where the app logic doesn’t require complex role-based access within the app.

### **When To Reconsider**:
- For ...
by Silvio.Falconi
Thu Nov 07, 2024 11:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse very slow vs Xbrowser
Replies: 18
Views: 2875

Re: xbrowse very slow vs Xbrowser

... browses, TWBROWSE, TCBROWSE, TXBROWSE.
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 ...
by nageswaragunupudi
Thu Nov 07, 2024 11:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse very slow vs Xbrowser
Replies: 18
Views: 2875

Re: xbrowse very slow vs Xbrowser

... browses, TWBROWSE, TCBROWSE, TXBROWSE.
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 ...
by nageswaragunupudi
Sat Oct 19, 2024 3:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 1613

Re: Extending SetScope()

... That is our constraint now.
There are 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 ...
by Otto
Thu Oct 10, 2024 7:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Switching to Web
Replies: 2
Views: 617

Switching to Web

... clear that the future is moving towards web servers and web-based solutions. We are also about to release our online version, which will then require a server.

**Risk Assessment for the Web Server**

**Status quo**
Currently, no web server is installed, which means there is no attack surface ...
by Antonio Linares
Thu Sep 12, 2024 7:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: ms teams or similar
Replies: 2
Views: 381

Re: ms teams or similar

... virtual desktops that users can access remotely.
Application Virtualization: Use technologies like Microsoft App-V or Citrix to virtualize the Fivewin application and deliver it to users' devices.

These solutions would require additional infrastructure and setup beyond just using MS Teams or Dropbox.
by nageswaragunupudi
Fri Aug 30, 2024 1:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH - can't build Service with 2404 or 2407
Replies: 2
Views: 1080

Re: FWH - can't build Service with 2404 or 2407

It appears the problem is that these versions require uxtheme.lib to be included.
If you think that is the reason, please make these changes to "window.prg"

1) Please locate this line of code
METHOD SetWindowTheme( cSub, cIds ) INLINE _SetWindowTheme( ::hWnd, cSub, cIds )
and comment it out,

2 ...
by TimStone
Fri Aug 30, 2024 12:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: FWH - can't build Service with 2404 or 2407
Replies: 2
Views: 1080

FWH - can't build Service with 2404 or 2407

... to update it, and found that I cannot build it with FWH 2404 or 2407. In both cases it errors out.

It appears the problem is that these versions require uxtheme.lib to be included. Of course a service is not going to use "windows" or its themes. In order to build it successfully, it is necessary to ...
by Otto
Wed Aug 07, 2024 6:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FIVEWIN and the ONLINE VERSION in parallel
Replies: 5
Views: 1310

Re: FIVEWIN and the ONLINE VERSION in parallel

... using screenshots.
It was a long time ago, in 2012. I recall that it is possible to open the PDF with a specific page number, which would then require processing each page individually.

If you ask the question to KI, the suggestions given are ImageMagick or Ghostscript, and you should call it in ...
by Otto
Sat Aug 03, 2024 9:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to Code in HARBOURINO STYLE vs. React
Replies: 0
Views: 744

How to Code in HARBOURINO STYLE vs. React

... DOM elements at runtime.
User-Friendly Syntax:

Simplicity: The patcher approach offers a declarative and possibly more intuitive syntax that requires less boilerplate code and framework-specific syntax. This could be especially beneficial for smaller teams or projects that don't require full ...
by Otto
Fri Jul 26, 2024 7:43 am
Forum: FiveWin for Harbour/xHarbour
Topic: DBF File Format - Considerations A Secure Option
Replies: 15
Views: 2230

DBF File Format - Considerations A Secure Option

... times in the event of collisions are minimal.
Therefore, the DBF format represents a good and secure choice, especially for applications that require robust and simple data management.

Best regards,
Otto

https://mybergland.com/fwforum/dbf_multi_user1.jpg
https://mybergland.com/fwforum/dbf ...
by Armando
Thu Jul 04, 2024 4:15 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Error en ISLEAP()?, SOLUCIONADO
Replies: 9
Views: 1281

Re: Error en ISLEAP()?, SOLUCIONADO

... FUNCTION IsLeap(nAmo)
RETURN( ((nAmo % 4) == 0 .AND.;
(nAmo % 100) <> 0) .OR.;
((nAmo % 400) == 0) )


As you can see, in my function I only require the year while in Harbor's function
it requires the full date, that created confusion for me in my first post

Como pueden ver, solo requiero el ...
by Lailton
Tue May 28, 2024 2:07 am
Forum: FiveWin for Harbour/xHarbour
Topic: Socket
Replies: 1
Views: 353

Re: Socket

... Here you have the example server ( running port 10000 ):
https://github.com/harbour/core/blob/master/tests/ipsvr.prg

then the next step, here is HOW to connect to the first one:
https://github.com/harbour/core/blob/master/tests/ipclnt.prg


Note:
It require muitthread, so add to your build -mt
:D
by Otto
Sat May 18, 2024 9:12 am
Forum: FiveWin para Harbour/xHarbour
Topic: Mod Harbour: ChatGPT Provides Detailed Answers
Replies: 23
Views: 3674

Mod Harbour: ChatGPT Provides Detailed Answers

... The need for web versions of user programs and the future of the DBF file format depend on several factors, including technical developments, user requirements, and market trends. Here are some considerations for both aspects:

Web Versions of User Programs
Advantages:
Accessibility: Web applications ...