Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Clarion in general: Completing a webform from Clarion 2002-07-12 -- John Dunn Newsgroups: comp.lang.clarion
>Is it possible to send information from a clarion app to a website to
>complete an online form on the webpage?
>If possible please give some info
Hi Anton,
Here is some code that I use to do this:
TrackPackage ROUTINE
WebBrowser = CREATE(0,CREATE:OLE)
WebBrowser{PROP:Create} = 'InternetExplorer.Application'
WebBrowser{'Visible'} = True
UrlString = 'http://www....'
WebBrowser{'Navigate(' & CLIP(UrlString) & ')'}
! Waiting until page load
StartTime = CLOCK()
LOOP
IF WebBrowser{'ReadyState'} = 4 THEN BREAK.
IF CLOCK() - StartTime > 1000 THEN BREAK. ! 10 seconds
YIELD()
END ! loop
! Fill fields
WebBrowser{'Document.forms("SearchForm").SearchField.Value'} = |
CLIP(Pkg:TrackingNo)
WebBrowser{PROP:Deactivate}
DESTROY(WebBrowser)
You will need to look at the HTML source for the target info.
HTH,
John
Today is November 21, 2024, 7:22 am This article has been viewed 35219 times. Google search has resulted in 47 hits on this article since January 25, 2004.
|
|