Search found 83 matches

by wartiaga
Thu Jul 08, 2021 1:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: To sign a xml
Replies: 7
Views: 4667

Re: To sign a xml

Eroni wrote: Thu Jul 01, 2021 9:56 pm Yes, I can post a small example, but a need to know what king of encryption is necessary.
Sha1 please. Thanks!
by wartiaga
Thu Jul 08, 2021 1:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: About routes
Replies: 0
Views: 57658

About routes

Hi,

Does anyone have or know a solution to plot better, shorter or faster routes for certain groups of addresses?

Thanks in advance.
by wartiaga
Sun Jun 27, 2021 12:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: To sign a xml
Replies: 7
Views: 4667

Re: To sign a xml

Eroni wrote: Tue Jun 22, 2021 8:14 pm It's possible in xHarbour/Harbour, but if it's Sha1 encryption.
Sha256 could only do it in C Sharp, using call to external application.
Thanks for answer, any example?
by wartiaga
Thu May 27, 2021 6:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: To sign a xml
Replies: 7
Views: 4667

Re: To sign a xml

horacio wrote: Mon May 01, 2017 3:47 pm Using openssl ?

Saludos
Hi, maybe, any tip? Thanks
by wartiaga
Thu Jan 28, 2021 6:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: API integrate
Replies: 0
Views: 55501

API integrate

Hi, I want to try integrate my app to route4me api. How the sdks below is more easy to integrate a fivewin app? Route4Me PHP SDK » Route4Me C++ SDK » Route4Me C# SDK » Route4Me Java SDK » Route4Me Python SDK » Route4Me NodeJS SDK » Route4Me Ruby SDK » Route4Me Golang SDK » Route4Me Erlang SDK » Than...
by wartiaga
Fri Oct 23, 2020 7:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Google maps and routes
Replies: 2
Views: 1048

Google maps and routes

Hi,

Anyone have a fivewin sample to traces routes in google maps? Sending a array with many address and getting back the best route?
Thanks in advance.
by wartiaga
Sun Aug 23, 2020 6:46 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Combobox focus problem
Replies: 5
Views: 2786

Re: Combobox focus problem

karinha wrote:Example?
Karinha, obrigado, Carlos Vargas solucionou o problema!
by wartiaga
Sun Aug 23, 2020 6:45 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Combobox focus problem
Replies: 5
Views: 2786

Re: Combobox focus problem

carlos vargas wrote:please try this.
http://forums.fivetechsupport.com/viewt ... ey#p230373
Gracias Carlos Vargas, funcionou!
by wartiaga
Thu Aug 20, 2020 1:01 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Combobox focus problem
Replies: 5
Views: 2786

Combobox focus problem

Hi,

Why combobox control (dropdown list) inside a folder dont display a doted focus line?
Using Manifest Theme.
Any tricks?

Porque los combobox não mostram a linha pontilhada quando se tem o foco dentro de um folder?


Thanks in advance.

Wanderson.
by wartiaga
Sat May 30, 2020 8:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: A good resource builder
Replies: 6
Views: 1789

Re: A good resource builder

Hello, Until know I have always been using Resource Workshop from Borland. It has always done its job perfectly. But since I need to transfer my last Windows 32-bit PC to Windows 10 64-bit, I can't use Resource Workshop anymore. Which is a good alternative resource builder which is compatible with ...
by wartiaga
Tue Apr 28, 2020 5:32 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Tomando fotos con la webcam
Replies: 56
Views: 13232

Re: Tomando fotos con la webcam

Antonio Linares wrote:Usando mod_harbour para tomar fotos / Using mod_harbour to take photos

https://www.modharbour.org/modharbour_samples/photo.prg
Amazing! Can you provide source code? Thanks!
by wartiaga
Wed Feb 26, 2020 3:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Alltrim() help
Replies: 6
Views: 2192

Re: Alltrim() help

cnavarro wrote:Use

Code: Select all

cStr   := StrTran( cStr, Chr( 160 ), " " )
 
https://stackoverflow.com/questions/279 ... th-numbers
Thank you! I will try.
by wartiaga
Wed Feb 26, 2020 3:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Alltrim() help
Replies: 6
Views: 2192

Re: Alltrim() help

http://fivewin.com.br/index.php?/topic/28336-pequisa-aven%C3%A7ada/    // Endereco/Calle/Direccion    cDocXml = TIRA_ACENTUACAO( oArqCli:ENDERECO )    ? cDocXml FUNCTION TIRA_ACENTUACAO( cStr )    LOCAL cStrNew := "", nX    cAcentos := { "‡", "A", "—", "...
by wartiaga
Wed Feb 26, 2020 12:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Alltrim() help
Replies: 6
Views: 2192

Re: Alltrim() help

Yes, AllTrim is used for remove blank spaces at end and at begining Please, put this code ? Asc( Right( Alltrim(oArqCli:ENDERECO), 1 ) ) == 32 ? Asc( Right( Alltrim(oArqCli:ENDERECO), 1 ) )   Hi cnavarro, The result: .F. 160 In asc table 160 = á How this is possible? I don't see á but a space. How ...
by wartiaga
Wed Feb 26, 2020 1:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: Alltrim() help
Replies: 6
Views: 2192

Alltrim() help

Hi guys, I have this line code: fwrite(marq,'<xLgr>'+Alltrim(oArqCli:ENDERECO)+'</xLgr>'+mfim) Just fine but in some cases a blank caracter apears in xml (end of oArqCli:ENDERECO field) like this: <xLgr>RUA 2 QD 13 LT 15 </xLgr> Shouldn't Alltrim() remove whites at the beginning and end? Thanks!