Search found 726 matches

by George
Fri Dec 13, 2024 8:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ADS licences directly from SAP?
Replies: 6
Views: 1547

Re: ADS licences directly from SAP?

ADVANTAGE DATABASE SERVER (ADS) database is great database comparable to any SQL in my opinion. The truth is that for many years it has no longer been available for sale nor does it receive support from the SAP company. I remember that at some point they offered a one-user evaluation version, fully ...
by George
Mon Jun 17, 2024 5:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Why You Should Stick with DBF or Access Databases for Now
Replies: 5
Views: 900

Re: Why You Should Stick with DBF or Access Databases for Now

Hi otto,
In my opinion, Advantage Database Server (ADS) stands out as one of the best databases ever developed for business software. Its remarkable capabilities and performance are indisputable. Unfortunately, despite its strengths, the companies that acquired ADS decided to withdraw it from the ...
by George
Sat Dec 30, 2023 3:49 pm
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser no muestra el scroll
Replies: 7
Views: 1008

Re: xbrowser no muestra el scroll

Si utilizas RESOURCES en style debe colocar, para que aparezca el scroll en xBrowser, lo siguiente:
0x50D00000 ---> Barra Horizontal
0x50A00000 ---> Barra Vertical
by George
Wed Jul 19, 2023 3:18 am
Forum: FiveWin para Harbour/xHarbour
Topic: Distancia de Levenshtein
Replies: 5
Views: 656

Re: Distancia de Levenshtein

Leandro,
la funcion StrDiff(), en xHarbour, te calcula la funcion Levenshtein.
by George
Thu Jun 08, 2023 3:02 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Fastreport de Cristobal
Replies: 32
Views: 5835

Re: Fastreport de Cristobal

¿Que ha sucedido con EasyReport?
¿Podemos usarlo en 64Bits?
by George
Thu Jun 16, 2022 5:00 pm
Forum: FiveWin para Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Maestro Manuel Mercado

Agradeciendo y recordando siempre los aportes de nuestro maestro Manuel Mercado QEPD.
Mis condolencias a sus familiares.
by George
Sat Feb 05, 2022 5:54 pm
Forum: FiveWin para Harbour/xHarbour
Topic: APPEND FROM + Progress Bar
Replies: 10
Views: 1834

Re: APPEND FROM + Progress Bar

Enrique aqui tienes un ejemplo de la implementación de la barra de progreso leyendo el CSV que está en el array.
#include "FIVEWIN.CH"FUNCTION Main() LOCAL oDlg, oMeter, nActual := 0 DEFINE BRUSH oBrush COLOR CLR_LGRAY DEFINE WINDOW oDlg ; TITLE "Reading CSV file in array"; BRUSH oBrush ...
by George
Sat Feb 05, 2022 4:33 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Leer Excel XLSX grande a un array o DBF
Replies: 5
Views: 1939

Re: Leer Excel XLSX grande a un array o DBF

Faltó es pequeña función

FUNCTION fCSVMemo(cFileCSV)
cText := StrTran( MemoRead( cFileCSV ), CRLF, Chr(1) )
RETURN (cText)
by George
Sat Feb 05, 2022 4:31 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Leer Excel XLSX grande a un array o DBF
Replies: 5
Views: 1939

Re: Leer Excel XLSX grande a un array o DBF

Podrias probar pasando primero el archivo CSV a un array ya que esto lo hace bien rapido.

#include "FIVEWIN.CH"

FUNCTION Main()
LOCAL cMsgRun := "Procedure in execution; please Wait...", cMsgArrayData := "Creating CSV array data; please wait..."
LOCAL nStart := Seconds(), nEnd, aData ...
by George
Sun Sep 05, 2021 1:03 pm
Forum: FiveWin para Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: Fivelinux y Windows 11

Gracias Antonio por informarnos.
Aqui abajo te dejo el link sobre la información que hace referencia a Windows 11 y Linux. Quizas MS pretende darle un mayor apoyo a Linux en sus futuras versiones.

https://www.howtogeek.com/744328/how-to ... indows-11/
by George
Thu Sep 02, 2021 2:43 pm
Forum: FiveWin para Harbour/xHarbour
Topic:
Replies: -1
Views:

Fivelinux y Windows 11

Fivewin para Linux es un producto excelente.
Lo usé en una Raspberry Pi hace varios años y funcionó, pero creo que estaba un poco desactualizado ya que el manual tenia fecha del 2003 y hacia referencia a algunas bibliotecas antiguas (en desuso) de Linux. Creo que ahora deberíamos empezar a usar ...
by George
Thu Sep 02, 2021 2:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Fivelinux and Windows 11

Fivewin for Linux is an excellent product.
I used it on a Raspberry Pi several years ago and it worked, but I think it was somewhat out of date as the manual was dated 2003 and referred to some old Linux libraries.
I think we should start using it in our new programs as Microsoft, as I understand ...
by George
Thu Sep 02, 2021 2:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: OT Will you update your PC to Windows 11

I will update to Windows 11.
by George
Thu Aug 26, 2021 3:05 pm
Forum: Utilities / Utilidades
Topic:
Replies: -1
Views:

Re: Fibonacci

Excellent! Thanks Enrico for you help.

Regards,

George
by George
Thu Aug 26, 2021 10:57 am
Forum: Utilities / Utilidades
Topic:
Replies: -1
Views:

Re: Fibonacci

#include "FiveWin.ch"function Main() local n, nStart, nDelay, nFibonacci set decimal to 8 nStart := Seconds() n = 32 nFibonacci := C_FIBONACCI( n ) nDelay := Seconds() - nStart ? "n, Fibonacci, delay = ", n, nFibonacci, nDelay RETURN nil ...