Go Back   Trackpads Community > General Discussions > Computer and Technology > Web Design

Web Design Forums and discussions on webdesign

Web Design

Reply
 
LinkBack Thread Tools
Old 05-31-2005, 16:00   #1 (permalink)
John
Civilians

 
Default Internet Transfer Control, only option?

Hi

Is itc the only option if one needs to post to a web site from within
access? I am looking for something better if there is such a thing.

Thanks

Regards


 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Trackpads Information
Click to Visit
Old 06-01-2005, 00:00   #2 (permalink)
John Mishefske
Civilians

 
Default Re: Internet Transfer Control, only option?

John wrote:
> Hi
>
> Is itc the only option if one needs to post to a web site from within
> access? I am looking for something better if there is such a thing.


Sure, don't mess with that control and instead use the WinInet API directly. Much easier
to distribute. Search on "WinInet API".

You are advised that it isn't good etiquette to cross-post to all these groups. Pick the
most appropriate one or two; the first two in your list was sufficient.

--
'---------------
'John Mishefske
'---------------
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-01-2005, 04:00   #3 (permalink)
John
Civilians

 
Default Re: Internet Transfer Control, only option?

Thanks for that. I have searched but have not found an example to post to a
url from behind an isa 2000 server. Any idea where I can find an example?

Thanks

Regards

"John Mishefske" <mishejNEGATIVE@JUNKtds.net> wrote in message
news:429d02ec$1_1@newspeer2.tds.net...
> John wrote:
>> Hi
>>
>> Is itc the only option if one needs to post to a web site from within
>> access? I am looking for something better if there is such a thing.

>
> Sure, don't mess with that control and instead use the WinInet API
> directly. Much easier to distribute. Search on "WinInet API".
>
> You are advised that it isn't good etiquette to cross-post to all these
> groups. Pick the most appropriate one or two; the first two in your list
> was sufficient.
>
> --
> '---------------
> 'John Mishefske
> '---------------



 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-01-2005, 04:00   #4 (permalink)
John Mishefske
Civilians

 
Default Re: Internet Transfer Control, only option?

John wrote:
> Thanks for that. I have searched but have not found an example to post to a
> url from behind an isa 2000 server. Any idea where I can find an example?



Here's a couple of sites:

http://www.codeproject.com/internet/...httpclient.asp
http://www.developerfusion.com/show/3272/3/

--
'---------------
'John Mishefske
'---------------
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-01-2005, 08:00   #5 (permalink)
John
Civilians

 
Default Re: Internet Transfer Control, only option?

This is all .net stuff and none of it relates to vba/access as far as I can
see.

Regards

"John Mishefske" <mishejNEGATIVE@JUNKtds.net> wrote in message
news:429d507f$1_3@newspeer2.tds.net...
> John wrote:
>> Thanks for that. I have searched but have not found an example to post to
>> a url from behind an isa 2000 server. Any idea where I can find an
>> example?

>
>
> Here's a couple of sites:
>
> http://www.codeproject.com/internet/...httpclient.asp
> http://www.developerfusion.com/show/3272/3/
>
> --
> '---------------
> 'John Mishefske
> '---------------



 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-01-2005, 12:00   #6 (permalink)
Rick Brandt
Civilians

 
Default Re: Internet Transfer Control, only option?

John wrote:
> I just need to post some data to a url. Are there any code examples
> somewhere?



Dim oHttpPost As Object
Dim POSTData As String

Set oHttpPost = CreateObject("Microsoft.XMLHTTP")
oHttpPost.Open "POST", "Your URL", False
oHttpPost.setRequestHeader "Content-Type",
"application/x-www-form-urlencoded"

POSTData = "RequestType=SAMPLE_POST" & _
"&Field1= " & Variable1 & _
"&Field2=" & Variable2 & _
"&Field3=" & Variable3 & _
"&Field4=" & Variable4 & _
"&Field5=" & Variable5

oHttpPost.Send (POSTData )

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-01-2005, 12:00   #7 (permalink)
John
Civilians

 
Default Re: Internet Transfer Control, only option?

Hi Rick

Many thanks for that. Any way to get the return data from site (itc
equivalent GetChunk) and any error code (itc ResponseCode)?

Thanks

Regards

"Rick Brandt" <rickbrandt2@hotmail.com> wrote in message
news:dyine.1170$JQ6.530@newssvr11.news.prodigy.com ...
> John wrote:
>> I just need to post some data to a url. Are there any code examples
>> somewhere?

>
>
> Dim oHttpPost As Object
> Dim POSTData As String
>
> Set oHttpPost = CreateObject("Microsoft.XMLHTTP")
> oHttpPost.Open "POST", "Your URL", False
> oHttpPost.setRequestHeader "Content-Type",
> "application/x-www-form-urlencoded"
>
> POSTData = "RequestType=SAMPLE_POST" & _
> "&Field1= " & Variable1 & _
> "&Field2=" & Variable2 & _
> "&Field3=" & Variable3 & _
> "&Field4=" & Variable4 & _
> "&Field5=" & Variable5
>
> oHttpPost.Send (POSTData )
>
> --
> I don't check the Email account attached
> to this message. Send instead to...
> RBrandt at Hunter dot com
>
>



 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
A Monroe Doctrine for Control of the Internet Woodmonkey Point/Counterpoint 3 11-14-2005 20:44
Should the UN Control the Internet? Woodmonkey Point/Counterpoint 10 11-13-2005 18:00
MS Internet Transfer Control John Web Design 1 12-04-2004 07:00
Transfer of Detainee Control Completed DoD News DOD News Services 0 10-11-2004 22:00
Control Cell Link for Option Button based on value in a cell arunjoshi Microsoft Applications 1 06-16-2004 02:20


Community Information
Options
Quick Options
Trackpads Non-Commercial Ad
Copyright Information Click to Visit
Time
Server Time
All times are GMT -4. The time now is 12:32.
Copyright
Copyright Information
The header is based off of work by Vipixel.com and modified by this site. Trackpads and the Trackpads Logo are both Registered Trademarks of Jason Edwards and cannot be used without prior written permission.  The only exception is as a link back to this site. Trackpads is a private website run by a small legion of volunteers, 3 dogs, 12.5 cats and an army of small, super smart, bio-engineered mice with pointy hats and tutu's. Search Engine Friendly URLs by vBSEO 3.2.0 RC7
Archive Links
Archive Links
Page generated in 1.86562 seconds with 19 queries