Search found 70 matches: consider

Searched query: consider

by Antonio Linares
Wed Dec 18, 2024 10:55 pm
Forum: latest AI news
Topic: AI Agents
Replies: 1
Views: 235

AI Agents

... Basic robots that follow a line on the floor.

Deliberative Agents : These agents use internal models and planning to decide on actions. They consider the future consequences of their actions. Example: Chess-playing programs.

Learning Agents : These agents improve their performance over time by ...
by TimStone
Thu Dec 12, 2024 10:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT class printer options
Replies: 6
Views: 543

Re: PRINT class printer options

I would like to update my work on this, and the results.

First, consider this piece of code where I use PrnSel() to provide the option to PRINT, View, or Cancel ( a very familiar popup to all of us ), and under Print, there are two radio buttons which select either use the default printer, or select ...
by Antonio Linares
Mon Nov 18, 2024 6:08 am
Forum: Off Topic / Otros temas
Topic: Chris Langan Vision of Reality
Replies: 0
Views: 2650

Chris Langan Vision of Reality

... opus
of Chris Langan at the heart of langan's
theory lies a radical proposition the
universe is not just a physical
structure but a cognitive one consider
that conventionally science treats the
universe as an amalgamation of forces
particles and Fields but according to
the ctmu the universe operates ...
by Otto
Sat Nov 09, 2024 10:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: cloud or not cloud
Replies: 34
Views: 5777

Re: cloud or not cloud

Hello friends,
I think if we had a good checklist of everything we really need to consider, divided into the three areas of responsibility:

system administrator,
web app developer,
and user,


we could alleviate many of the concerns.

Best regards,
Otto
by Silvio.Falconi
Thu Nov 07, 2024 11:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse very slow vs Xbrowser
Replies: 18
Views: 2877

Re: xbrowse very slow vs Xbrowser

... 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.


TWBROWSE there is no update Ceccarelli abandoned it many years ...
by nageswaragunupudi
Thu Nov 07, 2024 11:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse very slow vs Xbrowser
Replies: 18
Views: 2877

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 Marc Venken
Thu Oct 31, 2024 12:35 pm
Forum: FiveWin for Harbour/xHarbour
Topic: RDS (Remote Desktop) and FW programming
Replies: 10
Views: 1197

Re: RDS (Remote Desktop) and FW programming

... you already have a solid foundation for an RDS environment. For primary use of an article inventory program, where data traffic is key, you might consider the following optimizations:

1. Network Optimization
QoS (Quality of Service): Set up QoS to prioritize the data traffic of your article ...
by Marc Venken
Thu Oct 31, 2024 9:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: RDS (Remote Desktop) and FW programming
Replies: 10
Views: 1197

RDS (Remote Desktop) and FW programming

... at this moment a Server 2022 with RDS installed and connected to a other desktop machine.
It works great and fast.

I wonder what I have to consider that could happen in using this setup.

I use a correct Path setting and have to link correct. That's clear

So, all work is done on the server ...
by nageswaragunupudi
Sat Oct 19, 2024 3:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 1613

Re: Extending SetScope()

... Continue your same program as it is. Instead of SEEK, use LOCATE to search the part number. I can assure that this also will be fast enough

You may consider options 2(b), 2(a), 1 in that order.

Please feel free to ask if you like us to support you with a sample program in any of these alternatives.
by Otto
Wed Oct 16, 2024 12:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: MySql and Encryption
Replies: 6
Views: 936

Re: MySql and Encryption

... such as ASCII conversion followed by encryption with a code, you could transform the search term in the same way.

Here are the steps you should consider:
Preparation of the search term: Convert the search term into the same format you used for the data in the DBF file (e.g., ASCII conversion ...
by cnavarro
Sun Oct 06, 2024 3:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Browse of my ADO Class
Replies: 59
Views: 7516

Re: Browse of my ADO Class

... tested the code you are using, although the results are not ALWAYS completely satisfactory for me, but you can try and make any adjustments you consider to the attached code.


//----------------------------------------------------------------------------//
// Programa: TESTMT03.PRG
// Autor ...
by Enrico Maria Giordano
Thu Sep 26, 2024 2:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 4056

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... void nxs_crypt(
const unsigned char *source, HB_SIZE srclen,
const unsigned char *key, HB_SIZE keylen,
unsigned char *cipher );

#endif

Consider that MSVC32 is never defined, so why that code? When I try the sample with MSC32 I get:

error LNK2019: unresolved external symbol _nxs_crypt ...
by nnicanor
Wed Sep 25, 2024 2:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 4056

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... compatible between 32-bit and 64-bit environments. For example, `USHORT`, `BOOL`, and other types may have different sizes in a 64-bit system. Consider replacing `USHORT` with `UINT16` or using fixed-size types from `<stdint.h>` (like `uint16_t`), which will work correctly on both architectures ...
by Otto
Tue Sep 17, 2024 4:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: slowness
Replies: 76
Views: 11992

Re: slowness

... SMB-2 back then, but it’s too complex.

That’s why I switched to Remote Desktop. You don’t have any of these problems here.

What you might consider is a microservice. We use it to write into the DBF files since we still need to stay compatible with the desktop version and its index files.
We ...
by MarcoBoschi
Tue Sep 17, 2024 10:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: slowness
Replies: 76
Views: 11992

Re: slowness

Otto,

Let's consider Emag previous example in this post


#include "Dbinfo.ch"


REQUEST DBFCDX
REQUEST DBFFPT


FUNCTION MAIN()

LOCAL nSec

RDDSETDEFAULT( "DBFCDX" )

SET DBFLOCKSCHEME TO DB_DBFLOCK_CL53EXT

USE \\yourserver\yourfolder\yourdbf SHARED

SET INDEX TO \\yourserver\yourfolder ...