Search found 182 matches

by Lailton
Tue Apr 08, 2025 11:06 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Presentamos HDBC – La Mejor Conexión a Bases de Datos para Harbour
Replies: 21
Views: 6860

Re: Presentamos HDBC – La Mejor Conexión a Bases de Datos para Harbour

Soy usuario del HDO desde la primera version. hoy lo tieno corriendo desde Win/Linux/Mac/iOS/Android.
Es una lib perfecta y muy simples de usar-la. la qualidade del projecto de Manu es muy adimiravel.

Lo tieno ahora iniciado lo uso de HDBC.

Sobre Lubin,
La diferencia de HDO y HDBC.
HDO tiene sido ...
by Lailton
Thu Mar 27, 2025 12:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour debugging under IIS
Replies: 5
Views: 1129

Re: Harbour debugging under IIS

What help me with CGI application is the debugString:

File hbd_debug.c
#include "windows.h"
#include "hbapi.h"

HB_FUNC( HB_DEBUG_STRING )
{
OutputDebugString( hb_parcx( 1 ) );
}

then from your prg

hb_debug_string( "your string message" )

then from app "DebugView++.exe"
https://github.com ...
by Lailton
Thu Mar 27, 2025 12:15 am
Forum: FiveWin for Harbour/xHarbour
Topic: Using a webview from an existing window
Replies: 14
Views: 6903

Re: Using a webview from an existing window

Maybe?

Code: Select all | Expand

oWnd:oClient := oWebView
then you dont need setSize
by Lailton
Tue Mar 25, 2025 4:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: webview2 and images
Replies: 16
Views: 5502

Re: webview2 and images

Probably the PATH was not found, try full path, something like:
"/www/var/img/home.png"
It should be able to READ file and convert to base64.

also here I think that should be:

Code: Select all | Expand

cHtml := hb_StrReplace( cHtml, "{cImgHome}", cImgHome )
by Lailton
Tue Mar 25, 2025 1:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: webview2 and images
Replies: 16
Views: 5502

Re: webview2 and images

You can convert it to base64encode and use it on the HTML

Example for PNG but you can adjust to jpeg etc.

Code: Select all | Expand

function image2base64( cFile )
return "data:image/png;base64," + hb_base64encode( hb_memoRead( cFile ) )
by Lailton
Tue Mar 11, 2025 8:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TWebView2
Replies: 6
Views: 2063

Re: TWebView2

That's really nice thing about it.
I have too some apps already using the webview and some HTMLs to render the screens.

https://i.postimg.cc/zXJcqLdh/Screenshot-2025-03-11-at-5-03-55-PM.png
https://i.postimg.cc/6QYQ141h/Screenshot-2025-03-11-at-5-04-06-PM.png

It is awesome combine FWH with ...
by Lailton
Wed Mar 05, 2025 7:18 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Presentamos HDBC – La Mejor Conexión a Bases de Datos para Harbour
Replies: 21
Views: 6860

Re: Presentamos HDBC – La Mejor Conexión a Bases de Datos para Harbour

Hola,

Si, la xBrowse de FiveWin es muy avanzada, y te permite muy facil usar Array para los dados de browse
se verificar los ejemplos en la URL tiene ejemplos de como obter los resultado como array, hash, json etc.

Como siempre la limitacion de harbour es la imaginacion :D
by Lailton
Wed Mar 05, 2025 7:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing HDBC – The Ultimate Database Connector for Harbour
Replies: 3
Views: 1037

Re: Introducing HDBC – The Ultimate Database Connector for Harbour

Hi Massimo,

Yes, it can be used with Harbour in Linux OS.
After you order it you can contact me and I can provide you lib for linux and any help you need.

There's no a demo version :( but I can grant you quality product.
I have the HDO up running for years on iOS/Android/Mac/Linux/Windows and HDBC ...
by Lailton
Wed Mar 05, 2025 5:18 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Presentamos HDBC – La Mejor Conexión a Bases de Datos para Harbour
Replies: 21
Views: 6860

Presentamos HDBC – La Mejor Conexión a Bases de Datos para Harbour

Hola a todos,

Me complace presentar Harbour Database Connect (HDBC), una nueva y potente librería desarrollada por Manuel Expósito (Manu), un desarrollador altamente experimentado y sofisticado con un profundo conocimiento de Harbour a nivel C.

HDBC es una librería de alto rendimiento escrita en C ...
by Lailton
Wed Mar 05, 2025 5:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing HDBC – The Ultimate Database Connector for Harbour
Replies: 3
Views: 1037

Introducing HDBC – The Ultimate Database Connector for Harbour

Hello everyone,

I’m excited to introduce Harbour Database Connect (HDBC), a powerful new library developed by Manuel Expósito (Manu)—a highly skilled and sophisticated developer with deep expertise in Harbour at the C level.

HDBC is a cutting-edge library written in C/C++, designed to give Harbour ...
by Lailton
Tue Feb 25, 2025 6:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 25.01
Replies: 13
Views: 13243

Re: New FWH 25.01

vilian wrote: Tue Feb 25, 2025 6:51 pmTGmail
Yes, It is TGmail. on the next days I will add too the version for Office365 following same idea.
by Lailton
Tue Feb 25, 2025 6:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 25.01
Replies: 13
Views: 13243

Re: New FWH 25.01

Hello everyone,

An example of how Harbour + FWH works with OAuth.
https://i.postimg.cc/MMyBSPbx/capa-youtube-2.png

Here is a sample of the code.
Code Sample
#include "fivewin.ch"

static oGmail, hStore

function main()

local oDlg
local oName, cName := ""
local oEmail, cEmail := ""
local ...
by Lailton
Tue Feb 25, 2025 6:44 pm
Forum: FiveWin para Harbour/xHarbour
Topic: gmail y OAuth
Replies: 11
Views: 16655

Re: gmail y OAuth

Hola a todos,

Un ejemplo de cómo funciona Harbour + FWH con OAuth.
https://i.postimg.cc/MMyBSPbx/capa-youtube-2.png

Aquí tienen un sample del código.
Code Sample

#include "fivewin.ch"

static oGmail, hStore

function main()

local oDlg
local oName, cName := ""
local oEmail, cEmail ...
by Lailton
Sat Feb 15, 2025 4:12 am
Forum: FiveWin for Harbour/xHarbour
Topic: Send e-mail (CDO) server SMTP GMAIL with oAuth2
Replies: 7
Views: 10857

Re: Send e-mail (CDO) server SMTP GMAIL with oAuth2

Yes, I think that this method works for any service microsoft ( Outlook, Office364, Live, hotmail etc )
Soon I will share some screen here. :D
by Lailton
Tue Feb 11, 2025 4:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: Send e-mail (CDO) server SMTP GMAIL with oAuth2
Replies: 7
Views: 10857

Re: Send e-mail (CDO) server SMTP GMAIL with oAuth2

Hi Maurizio,

We will provide support for the oAuth2 on the next version FWH
with samples to send e-mail using GMail/Outlook(Office365).