Search found 85 matches

by MaxP
Wed Nov 06, 2019 8:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with the TREBAR class on Windows XP (solved)
Replies: 16
Views: 1508

Re: Problem with the TREBAR class on Windows XP

This is the screenshot how it looks with XP and using FWH 7.01

Image

This is the screenshot how it looks with XP and using FWH 19.09

Image

Thanks
by MaxP
Wed Nov 06, 2019 7:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with the TREBAR class on Windows XP (solved)
Replies: 16
Views: 1508

Re: Problem with the TREBAR class on Windows XP

Hello Cristobal,

are there any news respect to this problem?
by MaxP
Wed Nov 06, 2019 7:16 am
Forum: FiveWin for Harbour/xHarbour
Topic: Error with PopUp Menu from resources
Replies: 4
Views: 487

Re: Error with PopUp Menu from resources

No,

I'll try to create menus popups from source

Thanks
by MaxP
Mon Nov 04, 2019 4:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Error with PopUp Menu from resources
Replies: 4
Views: 487

Error with PopUp Menu from resources

Dear All, I encountered a problem with PopUp Menu from resources To check the problem, simply compile testpop2.prg file in the samples folder. testpop2.prg // Testing a Popup Menu from resources #include "FiveWin.ch" static oWnd //-----------------------------------------------------------...
by MaxP
Wed Oct 30, 2019 9:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with the TREBAR class on Windows XP (solved)
Replies: 16
Views: 1508

Re: Problem with the TREBAR class on Windows XP

An old version, the 7.01, I don't know from which version the problem started
by MaxP
Wed Oct 30, 2019 9:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with the TREBAR class on Windows XP (solved)
Replies: 16
Views: 1508

Re: Problem with the TREBAR class on Windows XP

Hello Cristobal,

if I not use manifest file, the bar does not appear in windows 10 and does not appear in windows xp,
the strange thing is that in the old version of fivewin it worked.
by MaxP
Wed Oct 30, 2019 8:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with the TREBAR class on Windows XP (solved)
Replies: 16
Views: 1508

Re: Problem with the TREBAR class on Windows XP

This is the screenshot in Windows 10

Image

This is the screenshot in Windows XP (in practice the bar is not displayed)

Image

Thanks
Massimo
by MaxP
Wed Oct 30, 2019 6:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with the TREBAR class on Windows XP (solved)
Replies: 16
Views: 1508

Problem with the TREBAR class on Windows XP (solved)

Dear All, I encountered a problem with the TREBAR class on Windows XP with the latest version of Fivewin. I know that Windows XP is an outdated operating system but unfortunately I still have clients who use it. To check the problem, simply compile rebars.prg file in the samples folder. #include &qu...
by MaxP
Mon Nov 26, 2018 10:46 am
Forum: All products support
Topic: Fatturazione Elettronica
Replies: 91
Views: 27357

Re: Fatturazione Elettronica

Ciao a tutti, non so se potrà servire, invio un'elaborazione dell'idea, una funzione che può generare un codice univoco per ogni minuto che passa anche per gli anni futuri. Sarebbe stato ottimo farlo per ogni secondo (la mia idea era quella) ma 5 cifre base 36 non bastano. #include "Fivewin.ch&...
by MaxP
Sat Oct 27, 2018 2:08 pm
Forum: All products support
Topic: Fatturazione Elettronica
Replies: 91
Views: 27357

Re: Fatturazione Elettronica

Salve, per le Fatture Elettroniche tra ditte/privati NON E' OBBLIGATORIO firmare il file XML. Codice per le scadenze     <DatiPagamento>       <CondizioniPagamento>TP02</CondizioniPagamento>       <DettaglioPagamento>         <ModalitaPagamento>MP12</ModalitaPagamento>         <DataScadenzaPagamento...
by MaxP
Fri Oct 05, 2018 2:55 pm
Forum: All products support
Topic: Fatturazione Elettronica
Replies: 91
Views: 27357

Re: Fatturazione Elettronica

Salve a tutti, una cosa importante è anche quella dell'archiviazione sostitutiva, non è sufficiente inviare il file XML via PEC ma le fatture vanno poi archiviate. Per ditte di dimensioni medio/piccole una soluzione potrebbe essere questa: se una ditta si registra a Fisconline l'agenzia delle entrat...
by MaxP
Fri Apr 29, 2016 7:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: Function to download a defined file from a homepage ?
Replies: 31
Views: 14110

Re: Function to download a defined file from a homepage ?

Another test #include "fivewin.ch"     function Main()             LOCAL   nRet                         nRet := DOWNLOADFILE( "http://www.yoursite.it/index.html", "C:\index.html" )                         MsgStop( nRet )     RETURN NIL     #pragma BEGINDUMP     #define ...
by MaxP
Thu Apr 28, 2016 2:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Function to download a defined file from a homepage ?
Replies: 31
Views: 14110

Re: Function to download a defined file from a homepage ?

Try with these changes     #include "fivewin.ch"     function Main()             LOCAL   nRet                         nRet := DOWNLOADFILE( "http://www.yoursite.it/index.html", "C:\index.html" )                         MsgStop( nRet )     RETURN NIL     #pragma BEGINDUM...
by MaxP
Tue Apr 26, 2016 3:30 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Function to download a defined file from a homepage ?
Replies: 31
Views: 14110

Re: Function to download a defined file from a homepage ?

I use NMAKE with file MAKEFILE TEST.EXE :     TEST.obj         C:\BORLAND\BCC55\bin\ilink32 -Gn -aa -Tpe -s -LC:\BORLAND\BCC55\lib @TEST.bc TEST.c :   TEST.prg         C:\HARBOUR\BIN\HARBOUR TEST /n /w /p /IC:\HARBOUR\INCLUDE;C:\FWH\INCLUDE /DNORMAL TEST.obj :   TEST.c         C:\BORLAND\BCC55\BIN\B...