` Comment on an Icetips Article
Icetips - Templates, Tools & Utilities for Clarion Developers

Templates, Tools and Utilities
for Clarion Developers

Add a comment to an Icetips Article

Please 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!

Your Name:  
Email:  
Header text/Subject:  

Please enter your comment in the box below:

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 May 5, 2024, 8:14 am
This article has been viewed 35115 times.
Google search has resulted in 47 hits on this article since January 25, 2004.



Back to article list   Search Articles   Add Comment   Printer friendly

Login

User Name:

Password: