My own Find

My own custom client side find functionality for IE.

<input type=”text” id=”SearchText” value=”the”>
<input type=”button” onclick=”doFind(SearchText.value, searchableText);” value=”Find”>
<INPUT onclick=”clearFind(SearchText.value, searchableText);” type=”button” value=”Clear” name=”ClearSearchButton”>

var HIGHLIGHT_START = “”;
var HIGHLIGHT_END = “”;
function doFind(text, elementToSearch)
{
var re = new RegExp(text, “ig”);
elementToSearch.innerHTML = elementToSearch.innerHTML.replace(re, HIGHLIGHT_START + [...]

Xaml

I had my university assignments recently. One of the assignment in Advanced .NET subject was to develop a multi-threaded Application to simulate a car park. I wanted to score as much as i can, and the lecturer Andrew Cain has allocated bonus marks for the subject when someone does something intresting.
I wanted the interface to [...]