home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / ch_code / ch21 / htmledit / htmlmod.bas < prev    next >
Encoding:
BASIC Source File  |  1996-05-18  |  287 b   |  12 lines

  1. Attribute VB_Name = "HTMLPadModule"
  2. Sub RenderDocument()
  3.  
  4.     HTMLEdit.WebBrowser1.Document.Script.Document.Clear
  5.     HTMLEdit.WebBrowser1.Document.Script.Document.Write HTMLPad.RichTextBox1.Text
  6.     HTMLEdit.WebBrowser1.Document.Script.Document.Close
  7.     Exit Sub
  8.  
  9. End Sub
  10.  
  11.  
  12.