VB6 HTML

Programming, for all ages and all languages.
Post Reply
KieranFoot

VB6 HTML

Post by KieranFoot »

Hi guys, currently I am writing an offline client for an online game, but I am having trouble.

I have the source code for a .NET version, but I am using VB6.

I need to access webpage values, but they dont seem to be getting passed as usual ???

Im using the Microsoft WebBrowser Control and it doesnt seem to have access to these variables, so im currently stuck...

Does anybody know of a more advanced FREE vb6 HTML client control?

Is anyone an expert with the VB6 WebBrowser control???

Please help :-\
sihotaamarpal

Re:VB6 HTML

Post by sihotaamarpal »

what type of variable u want to access

if u access tags then

make object of an events like this

dim hdoc withevents HTMLDocument


set hdoc=webbrowser.document
hodc.document.tagName etc
Barney

Re:VB6 HTML

Post by Barney »

Winsock control & connect & send yor own HTTP queries.
OR
MS Internet Transfer Control; MsgBox Inet1.OpenURL("http://www.google.com")

They are what I use, I never really got very far with the web browser control.

Thanks.
KieranFoot

Re:VB6 HTML

Post by KieranFoot »

Im not just needing access to page data i also need rthe page output thats why im using the Internet Controls.
Post Reply