UNKNOWN '************************************** ' Name: A 'Fake' HTML Compiler ' Description:I made this for a friend. ' It is like an html compiler, but it real ' ly makes a simple file. Then it loads th ' e page, and on unloading it deletes the ' file. Enjoy this fun prank. PS>>You need a form and 1 web browser, named wb. ' By: The New iSoftware Company! ' ' ' Inputs:None ' ' Returns:None ' 'Assumes:None ' 'Side Effects:None 'This code is copyrighted and has limite ' d warranties. 'Please see http://www.Planet-Source-Cod ' e.com/xq/ASP/txtCodeId.25349/lngWId.1/qx ' /vb/scripts/ShowCode.htm 'for details. '************************************** Dim html As String Private Sub Form_Load() html = ""'Paste html here, sorry paste your own. Open App.Path + "\temp.html" For Append As #1 Print #1, html Close #1 wb.Navigate App.Path & "\temp.html" Me.Caption = "'Fake' HTML Compiler" End Sub Private Sub Form_Resize() wb.Width = Me.Width - 100 wb.Height = Me.Height - 100 End Sub Private Sub Form_Unload(Cancel As Integer) Kill App.Path & "\temp.html" End Sub