Search found 20 matches
- Thu Jan 25, 2024 10:38 am
- Forum: All products support
- Topic: Traduzione da Java a Fwh
- Replies: 2
- Views: 1333
Re: Traduzione da Java a Fwh
Grazie !!!
- Wed Jan 24, 2024 11:21 am
- Forum: All products support
- Topic: Traduzione da Java a Fwh
- Replies: 2
- Views: 1333
Traduzione da Java a Fwh
Salve,
Dato che non ho familiarità con Java, mi servirebbe una traduzione di questa funzione in fwh e xHarbour
public static String getHeaderBytes(String msg) {
char[] msgLength = new char[4];
msgLength[0] = (char) Integer.parseInt(String.valueOf(msg.length()), 10);
msgLength[1] = (char ...
Dato che non ho familiarità con Java, mi servirebbe una traduzione di questa funzione in fwh e xHarbour
public static String getHeaderBytes(String msg) {
char[] msgLength = new char[4];
msgLength[0] = (char) Integer.parseInt(String.valueOf(msg.length()), 10);
msgLength[1] = (char ...
- Wed May 29, 2019 11:09 am
- Forum: All products support
- Topic:
- Replies: -1
- Views:
Dettagli di un file
Esiste qualche funzione in Fw per gestire le proprietà di un file quali commenti, tag, Etc. (dettagli file) ?
- Tue Mar 12, 2019 10:56 am
- Forum: All products support
- Topic:
- Replies: -1
- Views:
Re: i corrispettivi elettronici
Le informazioni che ho sono:
1 - Sarà cura del misuratore spedire i corrispettivi
2 - obbligatorio abbinare l'iva all'articolo o al reparto stampato nello scontrino (con natura se iva 0 - come x le fatture elettroniche)
3 - non si potrà più in uno scontrino di vendita rendere un articolo, ma ...
1 - Sarà cura del misuratore spedire i corrispettivi
2 - obbligatorio abbinare l'iva all'articolo o al reparto stampato nello scontrino (con natura se iva 0 - come x le fatture elettroniche)
3 - non si potrà più in uno scontrino di vendita rendere un articolo, ma ...
- Tue Oct 23, 2018 5:26 pm
- Forum: All products support
- Topic:
- Replies: -1
- Views:
- Fri Oct 05, 2018 12:52 pm
- Forum: All products support
- Topic:
- Replies: -1
- Views:
Re: Fatturazione Elettronica
Riassumendo, io ho inteso così:
1- Preparazione File XML:
Fatture PA - Deve sempre essere presente Cd.Ufficio (6 Caratteri) = Cd.Destinatario
B2B - Inserire il Cd.Destinatario (7 Caratteri) OPPURE Indirizzo PEC (se non presente Cd.Destinatario mettere '0000000')
Comunque deve essere sempre ...
1- Preparazione File XML:
Fatture PA - Deve sempre essere presente Cd.Ufficio (6 Caratteri) = Cd.Destinatario
B2B - Inserire il Cd.Destinatario (7 Caratteri) OPPURE Indirizzo PEC (se non presente Cd.Destinatario mettere '0000000')
Comunque deve essere sempre ...
- Wed May 24, 2017 4:38 pm
- Forum: All products support
- Topic: Collegare una DLL con C Struttura
- Replies: 7
- Views: 3623
Re: Collegare una DLL con C Struttura
--- volevo scrivere char Port[5]
- Wed May 24, 2017 4:34 pm
- Forum: All products support
- Topic: Collegare una DLL con C Struttura
- Replies: 7
- Views: 3623
Re: Collegare una DLL con C Struttura (RISOLTO !!!)
Ho risolto con wrapper in C, ma c'era anche una inesatezza nel .h del produttore !!!
typedef struct
{
char IPAddress[16]; //xxx.xxx.xxx.xxx
char[5] Port; // invece di int Port;
} TETHParameters;
Grazie per il suggerimento
typedef struct
{
char IPAddress[16]; //xxx.xxx.xxx.xxx
char[5] Port; // invece di int Port;
} TETHParameters;
Grazie per il suggerimento
- Wed May 17, 2017 9:32 am
- Forum: All products support
- Topic: Ditron
- Replies: 7
- Views: 2733
Re: Ditron
L'OCX gestito in FWH con ACTIVEX è più che stabile (ho parecchie installazioni e non mi danno problemi) ed è compatibile con il POS for .NET di Microsoft. Il Driver WINECRCOM come vedi nel .BAT ha una sua sintassi e comunque i due modi interagiscono con lo stesso SO (Service Object). Con WINECRCOM ...
- Tue May 16, 2017 9:55 am
- Forum: All products support
- Topic: Ditron
- Replies: 7
- Views: 2733
Re: Ditron
Puoi usare il driver WINECRCOM oppure l'OPOS 1.5 (OCX)
- Wed Mar 22, 2017 3:18 pm
- Forum: All products support
- Topic: Collegare una DLL con C Struttura
- Replies: 7
- Views: 3623
Re: Collegare una DLL con C Struttura
Dov'è che sbaglio ?
STRUCT TETHParameters
MEMBER IPAddress As STRING LEN 16
MEMBER Port As STRING LEN 6 // STRING ?? _INT ??
ENDSTRUCT
ETHParameters:=ThisStruct(TETHParameters)
ECRData :=ThisStruct(TECRData)
POSData :=ThisStruct(TPOSData)
ETHParameters:IPAddress:="192.168.1.2 ...
STRUCT TETHParameters
MEMBER IPAddress As STRING LEN 16
MEMBER Port As STRING LEN 6 // STRING ?? _INT ??
ENDSTRUCT
ETHParameters:=ThisStruct(TETHParameters)
ECRData :=ThisStruct(TECRData)
POSData :=ThisStruct(TPOSData)
ETHParameters:IPAddress:="192.168.1.2 ...
- Wed Mar 22, 2017 1:32 pm
- Forum: All products support
- Topic: Collegare una DLL con C Struttura
- Replies: 7
- Views: 3623
Re: Collegare una DLL con C Struttura
Ho provato ad usare cBuffer ... ma ancora niente. Potrebbero essere i tipi di dati in TETHParameters ? Ho usato la funzione StrPtr() per passare il puntatore alla struttura:
STRUCT TETHParameters
MEMBER IPAddress As STRING LEN 16
MEMBER Port As STRING LEN 6
ENDSTRUCT
ETHParameters:=ThisStruct ...
STRUCT TETHParameters
MEMBER IPAddress As STRING LEN 16
MEMBER Port As STRING LEN 6
ENDSTRUCT
ETHParameters:=ThisStruct ...
- Tue Mar 21, 2017 4:11 pm
- Forum: All products support
- Topic: Collegare una DLL con C Struttura
- Replies: 7
- Views: 3623
Collegare una DLL con C Struttura
Salve,
Dovrei tradurre un sorgente scritto in C collegandomi ad una DLL in xHarbour e FWH 9.05. Ho usato la classe tStruct (non so se nel corso del tempo ha subito cambiamenti),
ma il risultato è che non riesco a collegarmi al device. Qualcuno mi saprebbe indicare la soluzione
Grazie
typedef ...
Dovrei tradurre un sorgente scritto in C collegandomi ad una DLL in xHarbour e FWH 9.05. Ho usato la classe tStruct (non so se nel corso del tempo ha subito cambiamenti),
ma il risultato è che non riesco a collegarmi al device. Qualcuno mi saprebbe indicare la soluzione
Grazie
typedef ...
- Thu Mar 21, 2013 12:15 pm
- Forum: All products support
- Topic: Registratori di Cassa
- Replies: 3
- Views: 2745
Re: Registratori di Cassa
Chiaramente non puoi fare le prove con una cassa fiscalizzata, è il fornitore che dovrebbe procurartene una (cosa non facile). Io lavoro con ditte che vendono misuratori fiscali (nel corso degli anni ne ho collegato parecchi tipi) ed inizialmente me ne sono sempre fatto installare uno non fiscale in ...
- Tue Mar 19, 2013 4:38 pm
- Forum: All products support
- Topic: Registratori di Cassa
- Replies: 3
- Views: 2745
Re: Registratori di Cassa
1) Se si vuole collegare il registratore di cassa ad un gestionale, il 99% delle marche (Olivetti, Ncr, Siemens, Dataprocess, etc.) hanno il loro software di comunicazione. Ti basta passare (o ricevere) le informazioni in ASCII secondo il tracciato descritto nei manuali.
2) Se si vuole collegare la ...
2) Se si vuole collegare la ...