Sha1 please. Thanks!
Search found 83 matches
- Thu Jul 08, 2021 1:35 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: To sign a xml
- Replies: 7
- Views: 5922
- Thu Jul 08, 2021 1:32 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: About routes
- Replies: 0
- Views: 58877
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.
Does anyone have or know a solution to plot better, shorter or faster routes for certain groups of addresses?
Thanks in advance.
- Sun Jun 27, 2021 12:11 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: To sign a xml
- Replies: 7
- Views: 5922
- Thu May 27, 2021 6:07 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: To sign a xml
- Replies: 7
- Views: 5922
- Thu Jan 28, 2021 6:14 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: API integrate
- Replies: 0
- Views: 56355
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...
- Fri Oct 23, 2020 7:16 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Google maps and routes
- Replies: 2
- Views: 1286
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.
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.
- Sun Aug 23, 2020 6:46 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Combobox focus problem
- Replies: 5
- Views: 3896
Re: Combobox focus problem
Karinha, obrigado, Carlos Vargas solucionou o problema!karinha wrote:Example?
- Sun Aug 23, 2020 6:45 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Combobox focus problem
- Replies: 5
- Views: 3896
Re: Combobox focus problem
Gracias Carlos Vargas, funcionou!carlos vargas wrote:please try this.
http://forums.fivetechsupport.com/viewt ... ey#p230373
- Thu Aug 20, 2020 1:01 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Combobox focus problem
- Replies: 5
- Views: 3896
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.
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.
- Sat May 30, 2020 8:34 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: A good resource builder
- Replies: 6
- Views: 2439
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 ...
- Tue Apr 28, 2020 5:32 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Tomando fotos con la webcam
- Replies: 56
- Views: 14470
Re: Tomando fotos con la webcam
Amazing! Can you provide source code? Thanks!Antonio Linares wrote:Usando mod_harbour para tomar fotos / Using mod_harbour to take photos
https://www.modharbour.org/modharbour_samples/photo.prg
- Wed Feb 26, 2020 3:34 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Alltrim() help
- Replies: 6
- Views: 2478
Re: Alltrim() help
Thank you! I will try.cnavarro wrote:Usehttps://stackoverflow.com/questions/279 ... th-numbersCode: Select all
cStr := StrTran( cStr, Chr( 160 ), " " )
- Wed Feb 26, 2020 3:34 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Alltrim() help
- Replies: 6
- Views: 2478
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", "—", "...
- Wed Feb 26, 2020 12:36 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Alltrim() help
- Replies: 6
- Views: 2478
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 ...
- Wed Feb 26, 2020 1:06 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Alltrim() help
- Replies: 6
- Views: 2478
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!