View Single Post
Old 01-17-2013, 05:19 AM   PM User | #1
oem7110
New Coder

 
Join Date: Dec 2011
Posts: 11
Thanks: 2
Thanked 0 Times in 0 Posts
oem7110 is an unknown quantity at this point
What kind of language does it use for this App?

Based on following source code, it is very short, does anyone have any suggestions on what kind of language it uses for this App?

Thanks in advance for any suggestions

http://www.dukascopy.com/free/candelabrum/

<!DOCTYPE html>
<html>
<head>
<title>Candelabrum v2</title>
<meta charset="utf-8" />

<link rel="stylesheet" href="candelabrum.css" type="text/css" />

<script type="text/vbscript">
Function IEBinaryToArray_ByteStr(Binary)
IEBinaryToArray_ByteStr = CStr(Binary)
End Function

Function IEBinaryToArray_ByteStr_Last(Binary)
Dim lastIndex
lastIndex = LenB(Binary)
if lastIndex mod 2 Then
IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )
Else
IEBinaryToArray_ByteStr_Last = ""
End If
End Function
</script>

<script type="text/javascript" src="candelabrum.js"></script>
<script type="text/javascript">
var candelabrum;
window.onload = function() {
candelabrum = new dc.candelabrum.Candelabrum();
candelabrum.render(document.getElementById('candelabrum'));
}
</script>
</head>
<body>
<div id="candelabrum" style="width:670px;">
</div>
</body>
</html>
oem7110 is offline   Reply With Quote