VB Project help

I'm working on a project for my college class using VB.net with Visual Studio.

This is the first coding I've really started trying to write by myself and I'm stumped on some stupid simple stuff.  If anyone could help that would be great.

I need to display the Date in a textbox on startup of the application.

Right now I have...

Private Sub Form_Load()

Dim txtDate As String

txtDate = Now

MyTime = Format(txtDate, "dd mm yyyy")

MsgBox(txtDate)

End Sub

It doesn't throw any errors so my assumption is that I've written code that requires an action to display the date...

Any help would be great.

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
 Dim d = Date.Now().ToString()
 MsgBox(d)
End Sub

Why not create use Visual Basic to create a Gui interface to track the ip adress instead?

heres a tutorial:

https://www.youtube.com/watch?v=hkDD03yeLnU

need help on your vb project?

uninstall visual studio, install code::blocks with mingw and code in a real language! :D

As much as I'd love to do a different project or learn a "real" language to code in... I don't think my prof would aproove... I'm only taking VB because it is a prereq for Java and C+ classes... (Which makes no since)

I'd really love all the help I can get!
Also thanks for the help Enko!