not much else i can think to add here but it's making it hard to work...i'm using it like...
Dim Temp As String = "Hello" & vbCrLf & "Hi Again"




Posted 15 February 2009 - 10:32 PM
Dim Temp As String = "Hello" & vbCrLf & "Hi Again"
Posted 15 February 2009 - 10:37 PM
Dim Temp As String = "Hello" & vbCrLf & "Hi Again"
vzybilly, on 15 Feb, 2009 - 09:32 PM, said:
Dim Temp As String = "Hello" & vbCrLf & "Hi Again"
Posted 15 February 2009 - 10:44 PM
Posted 15 February 2009 - 10:59 PM
Try
mail.From = New MailAddress(F)
mail.To.Add(T)
mail.Subject = S
mail.Body = B
mail.IsBodyHtml = True
smtp.Host = H
smtp.Port = P
smtp.EnableSsl = True
smtp.Credentials = New System.Net.NetworkCredential(F, Me.MaskedTextBox1.Text)
smtp.Send(mail)
MsgBox("Your Message has beent sent.")
Catch x As Exception
MsgBox("Your Message has not beent sent." & re & "Error:" & re & x)
End Try
F = Me.TextBox1.Text & Me.Label4
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
