home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 4_2005-2006.ISO / data / Zips / Complete_E1918487292005.psc / frmSetBodyHTML.frm < prev    next >
Text File  |  2003-12-23  |  2KB  |  55 lines

  1. VERSION 5.00
  2. Begin VB.Form frmSetBodyHTML 
  3.    Caption         =   "Set Body HTML"
  4.    ClientHeight    =   3135
  5.    ClientLeft      =   60
  6.    ClientTop       =   360
  7.    ClientWidth     =   4695
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3135
  10.    ScaleWidth      =   4695
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.TextBox txtSet 
  13.       Height          =   2415
  14.       Left            =   120
  15.       MultiLine       =   -1  'True
  16.       ScrollBars      =   2  'Vertical
  17.       TabIndex        =   1
  18.       Text            =   "frmSetBodyHTML.frx":0000
  19.       Top             =   120
  20.       Width           =   4455
  21.    End
  22.    Begin VB.CommandButton cmdSetBodyHTML 
  23.       Caption         =   "OK"
  24.       Height          =   375
  25.       Left            =   3480
  26.       TabIndex        =   0
  27.       Top             =   2640
  28.       Width           =   1095
  29.    End
  30. End
  31. Attribute VB_Name = "frmSetBodyHTML"
  32. Attribute VB_GlobalNameSpace = False
  33. Attribute VB_Creatable = False
  34. Attribute VB_PredeclaredId = True
  35. Attribute VB_Exposed = False
  36. Option Explicit
  37.  
  38. Dim IE As InternetExplorer
  39. Dim WIN As New ShellWindows
  40. Public BrowserHandle As String
  41.  
  42. Private Sub cmdSetBodyHTML_Click()
  43.     On Error Resume Next
  44.     For Each IE In WIN
  45.         If BrowserHandle = "h" & IE.hWnd Then
  46.             'IE.navigate "about:blank"
  47.             IE.document.Close
  48.             IE.document.open
  49.             IE.document.write txtSet.Text
  50.             'IE.document.body.innerHTML = ""
  51.             'IE.document.body.innerHTML = txtSet.Text
  52.         End If
  53.     Next
  54. End Sub
  55.