Hello

So I'm having trouble with my program I would say it's pretty Basic but I'm not very fond in Visual Basic.

What I'm trying to achieve:

User Hits "Browse" Looks for the "Time.db" file then hit's "Approve" what supposed to happen is that time.db file sends to my email as an attachment


My Problem:

When I hit Approve this will come up
Code:
Could not find a part of the path 'C:\done\time.db'.
The Code I'm using

Code:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Dim MyMailMessage As New MailMessage()
        Dim MsgAttachment As New Attachment(TextBox1.Text & "\config\data.db")
        MyMailMessage.From = New MailAddress("~~~~@~~.com")
        MyMailMessage.To.Add("~~@~~.com")
All help is appreciated, Getting really pissed.