Search found 1281 matches

by anserkk
Fri Mar 10, 2017 4:22 am
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 11170

Re: Plotting locations on Google Maps

The translation time for the geocode is quite long when creating a map. So I decided to get the codes and store them in the database for each address. Obviously this will take time because google has to search its database based on the address provided by you and then return the most accurate resul...
by anserkk
Tue Mar 07, 2017 4:18 am
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 11170

Re: Plotting locations on Google Maps

You are using coordinates. I have addresses. I know we can feed either to Google Maps, but what is the format for using street addresses instead ? Thank you. Here is a complete sample that serves your purpose. You can provide Addresses, Google will find out the details (if available) and then displ...
by anserkk
Tue Mar 07, 2017 1:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 11170

Re: Plotting locations on Google Maps

your test here not run ( I have win 7 64 bit ie, chrome,firefox ) The sample that I posted uses OLE using Internet explorer. If you inspect the code then you would notice the following line at the bottom of the sample. oOle:=CreateObject("InternetExplorer.Application") My sample basically...
by anserkk
Tue Mar 07, 2017 1:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 11170

Re: Plotting locations on Google Maps

You are using coordinates. I have addresses. I know we can feed either to Google Maps, but what is the format for using street addresses instead ? Thank you. If you don't have LAT and LNG then you need to call Google API's with the address. If found, Google will return the LAT and LNG, you may then...
by anserkk
Mon Mar 06, 2017 12:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Plotting locations on Google Maps
Replies: 48
Views: 11170

Re: Plotting locations on Google Maps

http://s9.postimg.org/cjb0ayban/GMap_Multi_Location.png #Include "FiveWin.ch" //----------------------------- Function Main()     Local aData:={ {'Antonio (Spain)'   , 36.510328, -4.882490},;                    {'Sylvio (Italy)'    , 42.979704, 13.664149},;                    {'Otto (Aust...
by anserkk
Sat Feb 11, 2017 4:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: Google Drive - Application integrated with Google Drive
Replies: 22
Views: 5740

Re: Google Drive - Application integrated with Google Drive

Mr William ** DOWNLOAD DEMO: https://bitbucket.org/wmanesco/driveintegrationdemo/downloads/Drive_v1_demo.rar** I just downloaded the demo, extracted the files and executed drive.exe. Logged in with my credentials but it shows drive as empty. Please guide me what should I do to see the files on my g...
by anserkk
Wed Jan 25, 2017 5:08 am
Forum: FiveWin para Harbour/xHarbour
Topic: Validar respuesta desde un WEBSERVICE
Replies: 6
Views: 1830

Re: Validar respuesta desde un WEBSERVICE

It looks like the contents in xRes is XML
xRes:=oSoapClient:ObtTok("UserName", "Password")
by anserkk
Sat Jan 07, 2017 9:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: JSON Post and Get sample
Replies: 10
Views: 3775

Re: JSON Post and Get sample

With the below given code, I am getting the response from the server saying invalid username and password. Obviously the username and password is not the right one that I have used in the sample. Please check with the correct username and password. #Include "Fivewin.ch" //-----------------...
by anserkk
Sat Jan 07, 2017 5:10 am
Forum: FiveWin for Harbour/xHarbour
Topic: JSON Post and Get sample
Replies: 10
Views: 3775

Re: JSON Post and Get sample

Please try,

oHttp:SetRequestHeader( "Authorization",cHttpSend)

Please note that the format of cHttpSend depends on the format expected by your API provider. I assume that you have clear idea about it and you have filled the contents of cHttpSend accordingly

Regards

Anser
by anserkk
Tue Dec 27, 2016 5:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: Pasting some fields to web table using Clipboard help needed
Replies: 2
Views: 533

Re: Pasting some fields to web table using Clipboard help needed

Horizon wrote: Any idea?
You may have to use CreateObject("InternetExplorer.Application"), and identify the form fields in the web page and fill its contents programmatically.
by anserkk
Sat Dec 03, 2016 10:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 16.11
Replies: 15
Views: 2034

Re: New FWH 16.11

Antonio Linares wrote:Anser, Maurizio,

Could you try it again ? thanks
.

Sorry it is getting failed. The download doesn't get completed, it fails in between.

Edit :- After several tries, I was able to download.
by anserkk
Sat Dec 03, 2016 5:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 16.11
Replies: 15
Views: 2034

Re: New FWH 16.11

Antonio , I have problems with the download , keeps stopping :( Maurizio I too experience this issue. Unable to complete the downloads. I tried with 2 different ISP's. Experienced this issue yesterday. Today also I am facing the same issue. Looks like there is an issue with the server. Regards Anser
by anserkk
Sat Nov 26, 2016 3:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: Happy birthday Antonio !!!
Replies: 52
Views: 24663

Re: Happy birthday Antonio !!!

Happy Birthday
by anserkk
Thu Nov 17, 2016 7:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: GOEARTH & GMAPD problem
Replies: 5
Views: 1083

Re: GOEARTH & GMAPD problem

Try this sample. Please note that you will need to register with Google and obtain the API Key to use this in your application. This test sample works without the API key, I am not sure about the time frame that Google allows to use Google Maps without an API Key. #Include "FiveWin.ch" //-...