|
-
Dec 22nd, 2000, 10:59 AM
#1
Thread Starter
Member
Is there a way to get eitehr of these controls to send strings in regards to getting web pages. instead of bytes like the inet, or the whole think like winsock. Any suggestions would be apperciative. I am new to these controls and do not know there limitations.
thanxs
-
Dec 24th, 2000, 10:55 AM
#2
Well, first of all i would like you to make
yourself very clear and precise the next time
you put up a question
I'll answer all the possible questions i could
figure out after reading your question
Note: None of these things can be done in winsock
______________________________________________
1) Reading and retreiving whatever there is on webpage using strings.
'Note: using inet you have to specify a username and password for accesing web pages, sites, downloads etc.
Dim input as string
inet1.username = "abc"
inet1.protocol = icHttp
inet1.password = "abc"
inet1.openurl "http://www.microsoft.com/hello.html", input
msgbox input
2) Putting text on a web page
inet1.username = "abc"
inet1.protocol = icHttp
inet1.password = "abc"
inet1.execute "http://www.microsoft.com/hello.html", "PUT" _
, "Hello VB"
Contact me for further help on: [email protected]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|