Grabbing Contents From A Third Party Website
hi all im trying to do a datagrabber application which i do not know where to start from...and i would like to get the contents from a third party website for eg. http://www.asianbookie.com/ i can grab this contents with just one click on the visual basic application. below are the samples which i would like to grab. i do not know much about visualbasic in this kind how you all can help me out with this application thanks
12/3 03:45 Inter Milan vs Liverpool 1.925 0 : 1/2 1.975 1.80 3.31 4.47
Re: Grabbing Contents From A Third Party Website
Im doing similar stuff right now with YouTube. But im programming in Delphi.
Algo is simple.
Download the html, htm or php file that contains that info and open it.
Start searching for info you need. Look what tags are used and then start parsing for them to get data you need.
Also you must know when this data is updated. Is it daily or every week etc.
So you will know how often you must download the page again to parse it and display new info. If you dont update it and/or dont know how often its updated then user will get old/wrong info.
You should search in forums also with keyword: "parsing" and in VB the: MID$, LEFT$ and RIGHT$ are very handy for parsing.
Re: Grabbing Contents From A Third Party Website
oh ok but is there any simple codes like web browser then one button click it will auto save the value that i wanted to get ?
Re: Grabbing Contents From A Third Party Website
hope hat anyone could help me
Re: Grabbing Contents From A Third Party Website
Probably there are some ActiveX controls for HTML parsing but im doing all hard work by myself without any help of third party DLLs. The downloading, parsing, grabbing etc.
And yes in my YouTube videograbber im doing all this in one single button click.
Im using procedures and functions and calls to them are in ButtonClick event.
So YOU must do the same thing if you want this data to be available with single click . Code the functions and subs to do all that parsing etc and display it on some label for example. It's your choice.
You must remember one thing: you can't get this data without parsing this webpage. If parsing is unknown topic for you the i suggest you to search for simple examples.
http://www.google.ee/search?hl=et&q=...&btnG=Otsi&lr=
If you need any further help then just ask.
Re: Grabbing Contents From A Third Party Website
hmmm still cant work any guide ?
Re: Grabbing Contents From A Third Party Website
Re: Grabbing Contents From A Third Party Website
Re: Grabbing Contents From A Third Party Website
What do you mean? Its all VB 6 code.
Re: Grabbing Contents From A Third Party Website
oh okok ill try put it up