473,659 Members | 2,659 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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
Nov 13 '05 #1
14 2979
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
'---------------
Nov 13 '05 #2
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" <mi************ @JUNKtds.net> wrote in message
news:42******** **@newspeer2.td s.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
'---------------

Nov 13 '05 #3
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
'---------------
Nov 13 '05 #4
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
'---------------
Nov 13 '05 #5
This is all .net stuff and none of it relates to vba/access as far as I can
see.

Regards

"John Mishefske" <mi************ @JUNKtds.net> wrote in message
news:42******** **@newspeer2.td s.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
'---------------

Nov 13 '05 #6
John wrote:
This is all .net stuff and none of it relates to vba/access as far as
I can see.


You can use the MSXML.dll library to make an HTTP POST or GET request. Is that
what you're talking about? I use that to send data transfers from an Access app
to a java servlet but it should work for any URL.

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

Nov 13 '05 #7
I just need to post some data to a url. Are there any code examples
somewhere?

Thanks

Regards

"Rick Brandt" <ri*********@ho tmail.com> wrote in message
news:OZ******** ********@newssv r11.news.prodig y.com...
John wrote:
This is all .net stuff and none of it relates to vba/access as far as
I can see.


You can use the MSXML.dll library to make an HTTP POST or GET request. Is
that what you're talking about? I use that to send data transfers from an
Access app to a java servlet but it should work for any URL.

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

Nov 13 '05 #8
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("M icrosoft.XMLHTT P")
oHttpPost.Open "POST", "Your URL", False
oHttpPost.setRe questHeader "Content-Type",
"applicatio n/x-www-form-urlencoded"

POSTData = "RequestType=SA MPLE_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
Nov 13 '05 #9
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" <ri*********@ho tmail.com> wrote in message
news:dy******** ********@newssv r11.news.prodig y.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("M icrosoft.XMLHTT P")
oHttpPost.Open "POST", "Your URL", False
oHttpPost.setRe questHeader "Content-Type",
"applicatio n/x-www-form-urlencoded"

POSTData = "RequestType=SA MPLE_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

Nov 13 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3865
by: build | last post by:
G'day All, I'm trying to code a "Data Downloader" to automatically login and download data from www.Investorweb.com.au using the Internet Transfer Control. I have a some VB experience but no experience with web programming apart from basic html, forms etc. 1). I've extracted the following from the login page
5
5359
by: John | last post by:
Hi Does anyone have an example of using the Internet Transfer Control from behind a proxy server on port 8080? Thanks Regards
0
1800
by: John | last post by:
Hi I have the standard version of access which does not include internet transfer control (asfik). Can I purchase internet transfer control separately? If not, is there another access compatible internet control that I can purchase? Thanks Regards
1
4237
by: Ben Cox | last post by:
Trying to use the MS Internet Transfer Control in a Windows app. I get no errors but when I try to transfer files it is not working. Does anyone have any working samples. Ben
4
3787
by: Brian | last post by:
Hi, I'm trying to make an online FTP utility in C# ASP.NET using MSINET.ocx (an active X control a.k.a. "Microsoft Internet Transfer Control") I've added the reference into my project and have been able to compile it. However, when I go to a webpage, and try to FTP something, I get this error: System.Web.HttpUnhandledException was thrown.(Class is not licensed for use)
9
8195
by: Randy Dietz | last post by:
Hi, what would be the best way to set up an internet radio station? Does my MSDN Universal subscription include all the tools I'll need? I'd love to use vb.net unless there are some decent existing applications. Thanks, Randy
1
1695
by: gwhite1 | last post by:
I used to be able to easily transfer a file or web page off of a web site to a flat file with the VB6 internet transfer control. Does anyone know how to do this in Dot.NET 2005 VB? VB6 was so easy. Thanks!! Sheila
1
1195
by: manontheedge | last post by:
I'm working on a program where I need to be able to get specific data from an internet site that changes daily. Basically, I'm looking at 2 to 3 numbers out of a whole lot of numbers (among other things on the page). Anyway, I've done the majority of my programming in C++, and even then, I haven't done a whole lot with the internet. I wrote a program (I'm using VB6 for this) where it will take you directly to the page from whichever day you...
1
8833
by: AccessHunter | last post by:
Hi, Please help. I am not sure if this is the right place to post this question. I was given a database that was created by a person who no longer works here.I am trying to inherit the access database he owned. So when I double click the access database (mdb) to run it give me an error saying the project contains a missing or broken reference to the file MSINET.OCX version 1.0. I have Microsoft Visual Basic 6.5. I was able to go inside...
0
8427
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8332
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8851
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8746
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8627
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5649
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2750
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1975
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1737
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.