using your attached file, i tried like
vb Code:
  1. Set wb = CreateObject("internetexplorer.application")
  2. wb.navigate2 "c:\temp\sample source.html"
  3. Do Until wb.readystate = 4
  4.     DoEvents
  5. Loop
  6. Debug.Print wb.document.getelementbyid("ctl06_KeepCopyCheckBox").Value  ' on
  7. wb.Quit
  8. Set wb = Nothing