list.
Highlighting Duplicate Entries
Functions For Duplicates
Counting Distinct Entries In A Range
Extracting Unique Entries In A List
nice resource
http://www.cpearson.com/excel/Duplicates.aspx
All you need to know about creative and logic
Highlighting Duplicate Entries
Functions For Duplicates
Counting Distinct Entries In A Range
Extracting Unique Entries In A List
nice resource
http://www.cpearson.com/excel/Duplicates.aspx
<%
'****************************************
' This function randomly reorders the
' array aArray using a quick and dirty
' approach... It's fast!
'****************************************
Function ReOrderArrayQuickNDirty(ByVal aArray)
Dim iUpper, iLower, iLoop, iSwapPos, varTmp
iUpper = UBound(aArray)
iLower = LBound(aArray)
Randomize Timer
'Loop through the array, randomly swapping values
For iLoop = iLower to iUpper
'Get an array index to swap
iSwapPos = Int(Rnd * (iUpper + 1))
'Swap the current element with the element at iSwapPos
varTmp = aArray(iLoop)
aArray(iLoop) = aArray(iSwapPos)
aArray(iSwapPos) = varTmp
Next
ReOrderArrayQuickNDirty = aArray 'Return the jumbled array
End Function
Dim aSites
ReDim aSites(2)
aSites(0) = "4GuysFromRolla.com"
aSites(1) = "ASPMessageboard.com"
aSites(2) = "ASPFAQs.com"
'Display the array in-order
Dim iLoop
For iLoop = LBound(aSites) to UBound(aSites)
Response.Write aSites(iLoop) & "<BR>"
Next
response.write "<P>"
'Jumble up the array and display the new, random order!
aSites = ReOrderArrayQuickNDirty(aSites)
For iLoop = LBound(aSites) to UBound(aSites)
Response.Write aSites(iLoop) & "<BR>"
Next
%>
http://dev.mysql.com/doc/mysql/en/Replication_HOWTO.html
http://www.megalinux.net/archives/000170.html
ref: http://www.astahost.com/info.php/Mysql-Realtime-Replication_t2094.html
-------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function openWindow(){
var browser=navigator.appName;
if (browser=="Microsoft Internet Explorer"){
window.opener=self;
}
window.open('popup.html', 'null',
'width=900,height=750,toolbar=no,scrollbars=no,location=no,resizable =yes');
window.moveTo(0,0);
window.resizeTo(screen.width,screen.height-100);
//parent.close(); //Closing on the child
}
</script>
</head>
<body onload="window.open('','_parent','');openWindow()">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>If the window does not open, please turn off the pop-up blocker for this
site and <a href="#"
onClick="window.open('','_parent','');openWindow()"><u>click
here</u></a></td>
</tr>
</table>
</body>
</html>
---------
<html><head>
<script type="text/javascript" language="JavaScript">
function timedMsg()
{
//var t=setTimeout("alert('5 seconds!')",5000);
var t=setTimeout(EvenFullerScreen,5000);
}
function EvenFullerScreen(){
window.open("http://www.google.com","Aaarrgh","fullscreen ");
}
</script>
<title>FullScreen</title>
</head>
<body onLoad="javascript: timedMsg();">
Dhtml Code for IE browser, to popup or new window with Fullscreen
after 5 seconds on page load.</body></html>