Search found 7355 matches

by Enrico Maria Giordano
Sun Jan 17, 2021 1:15 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ListBox y el setitems
Replies: 5
Views: 1142

Re: ListBox y el setitems

Can I see your code?

EMG
by Enrico Maria Giordano
Sun Jan 17, 2021 9:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: Checkbox disappearing (MinGW)
Replies: 8
Views: 3588

Re: Checkbox disappearing (MinGW)

Ok, thank you.

EMG
by Enrico Maria Giordano
Sun Jan 17, 2021 8:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: Checkbox disappearing (MinGW)
Replies: 8
Views: 3588

Re: Checkbox disappearing (MinGW)

Thank you. Are you using MinGW? Did you move the focus to checkbox?

There is nobody here using MinGW, please?

EMG
by Enrico Maria Giordano
Sat Jan 16, 2021 10:40 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ListBox y el setitems
Replies: 5
Views: 1142

Re: ListBox y el setitems

You have to pass the object owner of oLb to inicializar() method.

EMG
by Enrico Maria Giordano
Sat Jan 16, 2021 2:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Checkbox disappearing (MinGW)
Replies: 8
Views: 3588

Re: Checkbox disappearing

Yes, same result. This is the files used to build the EXE: q.prg -fullstatic fwh.hbc This is fwh.hbc: {win}incpaths=include {win}libpaths=lib {win}gt=gtgui {mingw}libs=fivehg fivehgc {bcc}libs=fiveh fivehc {win}libs=comctl32 {win}libs=comdlg32 {win}libs=gdi32 {win}libs=hbct {win}libs=hbsqlit3 {win}l...
by Enrico Maria Giordano
Sat Jan 16, 2021 9:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: Checkbox disappearing (MinGW)
Replies: 8
Views: 3588

Checkbox disappearing (MinGW)

In the following sample, the checkbox disappears when it receives the focus. Please note that the problem shows up only with Harbour and MinGW. Any ideas? #include "Fivewin.ch" FUNCTION MAIN()      LOCAL oDlg      LOCAL cVar := SPACE( 30 )      LOCAL lVar := .F.      DEFINE DIALOG oDlg    ...
by Enrico Maria Giordano
Wed Jan 13, 2021 8:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: To read an hour (SOLVED)
Replies: 3
Views: 1116

Re: To read an hour

A GET with PICTURE "99:99"? A combobox with all the hours in the popdown list?

EMG
by Enrico Maria Giordano
Tue Jan 12, 2021 9:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: hbclas error 2012 what wrong with me? SOLUCIONADO
Replies: 2
Views: 1136

Re: hbclas error 2012 what wrong with me?

The include filename is wrong. The correct name is

Code: Select all

hbclass.ch
EMG
by Enrico Maria Giordano
Mon Jan 11, 2021 1:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Happy Birthday, Mr. Cristobal Navarro Lopez
Replies: 11
Views: 10466

Re: Happy Birthday, Mr. Cristobal Navarro Lopez

Happy Birthday, Cristobal!

EMG
by Enrico Maria Giordano
Fri Jan 08, 2021 9:09 am
Forum: FiveWin for Harbour/xHarbour
Topic: Validar fecha.
Replies: 9
Views: 16715

Re: Validar fecha.

Thank you for the confirmation, Master.

EMG
by Enrico Maria Giordano
Thu Jan 07, 2021 8:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Validar fecha.
Replies: 9
Views: 16715

Re: Validar fecha.

Impossible. A date field can't contain an invalid date and even if the database were corrupted you wouldn't get the invalid date, you will get an empty date.

EMG
by Enrico Maria Giordano
Thu Jan 07, 2021 7:43 pm
Forum: FiveWin para Harbour/xHarbour
Topic: O.T. Oración por Salud Mauricio Arévalo
Replies: 22
Views: 9550

Re: O.T. Oración por Salud Mauricio Arévalo

Leandro, my best wishes for a speedy recovery to your uncle!

EMG
by Enrico Maria Giordano
Thu Jan 07, 2021 9:43 am
Forum: FiveWin for Harbour/xHarbour
Topic: Validar fecha.
Replies: 9
Views: 16715

Re: Validar fecha.

FiveWiDi wrote:

Code: Select all

FUNCTION lIsDateOk( dDate )
Return ( .Not. Empty( CToD( DToC( dDate ) ) ) )
Why not just this?

Code: Select all

IF EMPTY( dDate )
    // error
ENDIF
EMG
by Enrico Maria Giordano
Wed Dec 30, 2020 6:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: report header and footer
Replies: 10
Views: 2248

Re: XBrowse: report header and footer

Thank you, Master Rao!

EMG