Manipulating DOM at runtime

Real time Clock using Visual Basic 6

Step 1: Open MS Visual Basic 6 Step 2: Select Standard EXE as the New Project. Now you have a form named Form1. Step 3: Add a Label to Form1. Now you also have a label named Label1 Step 4: Copy the code below and paste it inside Form1. Step 5: Click Run. Enjoy! :) Dim WithEvents kell As Timer Private Sub kell_Timer() Label1.Caption = Format$(Time, "hh:mm:ss AM/PM") End Sub Private Sub Form_Load()

Same Game in Javascript

This is similar to the Same Game app I posted using VB 6.0. This game application features ways of manipulating DOM dynamically to suit the needs of the application. To play the game, unzip the compressed file and open the same.html file. The game app is not supported in IE browsers and I have not tried it in Chrome yet. I exclusively used Firefox in testing the game app and Notepad++ for the