Search found 7355 matches

by Enrico Maria Giordano
Mon Dec 14, 2020 6:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Email from gmail
Replies: 12
Views: 3187

Re: Email from gmail

This is working fine (you can use HB_SENDMAIL() or SENDMAIL()). Please note that you need SSL with [x]Harbour for HB_SENDMAIL() to work. #include "Fivewin.ch" FUNCTION MAIN()     LOCAL cFrom     := "tubelitefacturas@gmail.com"     LOCAL cServer   := "smtp.gmail.com"    ...
by Enrico Maria Giordano
Mon Dec 14, 2020 4:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Email from gmail
Replies: 12
Views: 3187

Re: Email from gmail

Any chance for me to have the password to make some test here?

EMG
by Enrico Maria Giordano
Mon Dec 14, 2020 3:47 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple array is giving me problems (SOLVED)
Replies: 11
Views: 1732

Re: Multiple array is giving me problems (SOLVED)

Yes, but please try this sample. It doesn't write the value to the field.

Code: Select all

#include "Fivewin.ch"


FUNCTION MAIN()

    USE CUSTOMER

    ? last

    last := "TEST"

    ? last

    RETURN NIL
EMG
by Enrico Maria Giordano
Mon Dec 14, 2020 1:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple array is giving me problems (SOLVED)
Replies: 11
Views: 1732

Re: Multiple array is giving me problems

Antonio Linares wrote:Enrico,

It works because the alias is specified. Remove the alias and it will fail.
No, without the alias it won't work (= or := is the same) because it's referring to a MEMVAR variable and not to the DBF field.

EMG
by Enrico Maria Giordano
Mon Dec 14, 2020 11:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple array is giving me problems (SOLVED)
Replies: 11
Views: 1732

Re: Multiple array is giving me problems

Antonio Linares wrote:Marc,

fields assignment must use ":="

shopcolor->kleuren := cKleur
shopcolor->hexcode := Chex
It's not true. In that context, the two operators = and := are equivalent.

EMG
by Enrico Maria Giordano
Thu Dec 10, 2020 9:41 am
Forum: FiveWin para Harbour/xHarbour
Topic: Eliminar un Tree completo?
Replies: 2
Views: 647

Re: Eliminar un Tree completo?

Intenta asì:

Code: Select all

::oTre:DeleteAll()
EMG
by Enrico Maria Giordano
Tue Dec 08, 2020 5:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour with SSL/TLS - Master Enrico.
Replies: 32
Views: 4902

Re: xHarbour with SSL/TLS - Master Enrico.

No, please. Try my EXE that I just sent you by email.

EMG
by Enrico Maria Giordano
Tue Dec 08, 2020 4:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour with SSL/TLS - Master Enrico.
Replies: 32
Views: 4902

Re: xHarbour with SSL/TLS - Master Enrico.

I sent libs and dlls. Please confirm the receipt.

EMG
by Enrico Maria Giordano
Tue Dec 08, 2020 4:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour with SSL/TLS - Master Enrico.
Replies: 32
Views: 4902

Re: xHarbour with SSL/TLS - Master Enrico.

There is something wrong in one of your libs:

This is your lib:

Code: Select all

06/12/2020  15:23           551.424 libcrypto.lib
This is my lib:

Code: Select all

25/07/2020  11:28           608.768 libcrypto.lib
If you want my working libs please send me an email.

EMG
by Enrico Maria Giordano
Tue Dec 08, 2020 4:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour with SSL/TLS - Master Enrico.
Replies: 32
Views: 4902

Re: xHarbour with SSL/TLS - Master Enrico.

Please, check your password (currently is "xxxxxxxxxxxxx"): // By Enrico.  EMAILOT.PRG - Para OutLook.com #include "Fivewin.ch" FUNCTION MAIN()    LOCAL cFrom         := "karinhafwh@outlook.com"    //LOCAL cServer       := "smtp.office365.com"  // Pago?    LOC...
by Enrico Maria Giordano
Tue Dec 08, 2020 3:01 pm
Forum: All products support
Topic: FWBitmap invalid parameter
Replies: 3
Views: 2515

Re: FWBitmap invalid parameter

Ti conviene cercare di eliminare tutto l'eliminabile in modo tale da isolare il punto incriminato. Impossibile aiutarti senza poter riprodurre il problema. Magari prova a scrivere alla sezione in inglese del forum.

EMG
by Enrico Maria Giordano
Tue Dec 08, 2020 8:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: creation of a pdf
Replies: 12
Views: 2280

Re: creation of a pdf

Because the PDF is encoded Base64 inside the file XML:

<Attachment>...base64code...</Attachment>

EMG
by Enrico Maria Giordano
Mon Dec 07, 2020 8:19 pm
Forum: All products support
Topic: FWBitmap invalid parameter
Replies: 3
Views: 2515

Re: FWBitmap invalid parameter

Manca la cosa più importante: il punto del tuo programma dove avviene l'errore.

EMG
by Enrico Maria Giordano
Sun Dec 06, 2020 10:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour with SSL/TLS - Master Enrico.
Replies: 32
Views: 4902

Re: xHarbour with SSL/TLS - Master Enrico.

It works. You just forgot to set the password:
LOCAL cPassword := "yourpassword"
And you didn't link the correct libs:

Code: Select all

tipssl.lib
libssl.lib
libcrypto.lib
And last, where are the dlls?

EMG
by Enrico Maria Giordano
Sun Dec 06, 2020 4:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour with SSL/TLS - Master Enrico.
Replies: 32
Views: 4902

Re: xHarbour with SSL/TLS - Master Enrico.

You are probably using the libs for MSC. You have to generate that libs using your C compiler. The syntax is:

Code: Select all

implib -a libssl.lib libssl-1_1.dll
implib -a libcrypto.lib libcrypto-1_1.dll
EMG