Exchange YAHOO Currency Calculator
Ralph Nusser, Sogetes Computer-Services
http://www.sogetes.com
Calculate currency exchange rate
Description:
/*=========================================
SYNTAX:
_Exchange_YAHOO ( pCurrencyFrom ; pCurrencyTo )
AUTHOR:
Ralph Nusser, July 7, 2009
EXAMPLE:
http://de.finance.yahoo.com/currency-converter#from=EUR;to=CHF;amt=1
SOURCE:
iFrame as Custom Function:
Nick Lightbody, Deskspace Limited, http://www.deskspace.com
http://www.briandunning.com/cf/985
=========================================*/
Let ( [
virtual_page_width = 660 ;
virtual_page_height = 700 ;
left_offset = -15;
top_offset = -340;
From = pCurrencyFrom;
To = pCurrencyTo;
url = "http://de.finance.yahoo.com/currency-converter#from=" & From & ";to=" & pCurrencyTo & ";amt=1"
];
"data:text/html, " &
"<html>" &
"<head>" &
"<style>" &
"BODY { overflow: hidden }" &
"IFRAME { " &
"width: " & virtual_page_width & "px;" &
"height: " & virtual_page_height & "px;" &
"margin-left: " & left_offset & "px;" &
"margin-top: " & top_offset & "px;" &
"}" &
"</style>" &
"<body>" &
"<iframe src='" & url & "'></iframe>" &
"</body>" &
"</html>"
)
Note: these examples are not guaranteed or supported
by BrianDunning.com. Please contact the individual developer with any questions
or problems.
This
is my Web Viewer Example and I want to edit it
digg this page | del.icio.us this page
Newest Web Viewer Examples:
Web Viewer Example Authors:
Link to all of your own Web Viewer Examples on this site with the following URL:
http://www.briandunning.com/filemaker-web-viewer/results.php?author=Your
Name Here