Is it possible to run VBA code in VB (.NET)? If so, what is needed to do so? For example, if I wanted to create a new document in Word, I would use:

VB Code:
  1. Dim MyDoc As Word.Document
  2. Documents.Add.SaveAs("Hello.doc")
  3. Set MyDoc = Documents("Hello.doc")

Trying to paste it into VB.NET:

VB Code:
  1. Public Class Form1
  2.   Inherits System.Windows.Forms.Form
  3.  
  4.   [b]Windows Form Designer Generated Code[/b]
  5.  
  6.   Private Sub Button1_Click(ByVal sender As System.Object, _
  7.       ByVal e As System.EventArgs) Handles Button1.Click
  8.     Dim MyDoc As Word.Document
  9.     Documents.Add.SaveAs("Hello.doc")
  10.     MyDoc = Documents("Hello.doc")
  11.   End Sub
  12. End Class

I get errors such as "Type 'Word.Document' is not defined" and "Name 'Documents' is not declared."

What needs to be done in order to get this working (if it's possible)? I only started coding in VB a few weeks ago so bear with me if this is an inane question. I've been searching all over google and any VB forum I could find for the answer to this question but haven't found anything.