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 :-\
VB6 HTML
Re:VB6 HTML
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
if u access tags then
make object of an events like this
dim hdoc withevents HTMLDocument
set hdoc=webbrowser.document
hodc.document.tagName etc
Re:VB6 HTML
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.
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.
Re:VB6 HTML
Im not just needing access to page data i also need rthe page output thats why im using the Internet Controls.