Click here to Skip to main content
15,881,882 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to restrict splitter bar to certain limit ? Pin
Dave Kreskowiak8-Apr-08 3:06
mveDave Kreskowiak8-Apr-08 3:06 
GeneralRe: How to restrict splitter bar to certain limit ? Pin
mithilesh swarge10-Apr-08 3:21
mithilesh swarge10-Apr-08 3:21 
GeneralProblem sending mail using System.Net.Mail Pin
AHeavey7-Apr-08 23:37
AHeavey7-Apr-08 23:37 
GeneralRe: Problem sending mail using System.Net.Mail Pin
Christian Graus8-Apr-08 0:23
protectorChristian Graus8-Apr-08 0:23 
GeneralRe: Problem sending mail using System.Net.Mail Pin
AHeavey8-Apr-08 0:36
AHeavey8-Apr-08 0:36 
GeneralRe: Problem sending mail using System.Net.Mail Pin
Christian Graus8-Apr-08 0:46
protectorChristian Graus8-Apr-08 0:46 
GeneralRe: Problem sending mail using System.Net.Mail Pin
Rajesh Anuhya8-Apr-08 0:53
professionalRajesh Anuhya8-Apr-08 0:53 
AnswerRe: Problem sending mail using System.Net.Mail Pin
AHeavey8-Apr-08 1:02
AHeavey8-Apr-08 1:02 
hey guys, got it working in the end: Big Grin | :-D Big Grin | :-D Big Grin | :-D

Sub newreportMail(ByVal ex As String)
Dim SendEmail As New MailMessage()
With SendEmail
.From = New MailAddress("from@from.com")
.To.Add(New MailAddress("to@to.com"))
.Subject = "There is a problem inserting records"
.Body = "There has been a problem inserting a record : " + ex
Dim client As SmtpClient = New SmtpClient()
client.Host = "mail.here.com"
client.Credentials = New Net.NetworkCredential("from@from.com", "pass")
client.Send(SendEmail)
End With
GeneralDisplaying Treeview in Crystal Pin
Mamatha Malvi7-Apr-08 23:10
Mamatha Malvi7-Apr-08 23:10 
GeneralRe: Displaying Treeview in Crystal Pin
Dave Kreskowiak8-Apr-08 2:47
mveDave Kreskowiak8-Apr-08 2:47 
QuestionThe type initializer for 'SolutionName.Module1' threw an exception ??? Pin
kindman_nb7-Apr-08 22:57
kindman_nb7-Apr-08 22:57 
AnswerRe: The type initializer for 'SolutionName.Module1' threw an exception ??? Pin
Christian Graus7-Apr-08 23:00
protectorChristian Graus7-Apr-08 23:00 
Questionhtml help Pin
Tauseef A7-Apr-08 22:45
Tauseef A7-Apr-08 22:45 
GeneralRe: html help Pin
Christian Graus7-Apr-08 23:00
protectorChristian Graus7-Apr-08 23:00 
GeneralRe: html help Pin
Dave Kreskowiak8-Apr-08 2:44
mveDave Kreskowiak8-Apr-08 2:44 
QuestionHow to control an exe from another exe. Pin
okdeshpande7-Apr-08 22:37
okdeshpande7-Apr-08 22:37 
GeneralRe: How to control an exe from another exe. Pin
Christian Graus7-Apr-08 23:01
protectorChristian Graus7-Apr-08 23:01 
GeneralRe: How to control an exe from another exe. Pin
okdeshpande8-Apr-08 2:12
okdeshpande8-Apr-08 2:12 
GeneralRe: How to control an exe from another exe. Pin
Dave Kreskowiak8-Apr-08 2:42
mveDave Kreskowiak8-Apr-08 2:42 
GeneralRe: How to control an exe from another exe. Pin
okdeshpande8-Apr-08 18:22
okdeshpande8-Apr-08 18:22 
QuestionDoubt in Creating the text file Pin
jamesmani2k57-Apr-08 22:34
jamesmani2k57-Apr-08 22:34 
GeneralRe: Doubt in Creating the text file Pin
Christian Graus7-Apr-08 23:02
protectorChristian Graus7-Apr-08 23:02 
QuestionCreating a RecoProfile with VB.Net Pin
Dhara_Remadhara7-Apr-08 22:15
Dhara_Remadhara7-Apr-08 22:15 
GeneralRe: Creating a RecoProfile with VB.Net Pin
Dave Kreskowiak8-Apr-08 2:38
mveDave Kreskowiak8-Apr-08 2:38 
Questionweb service Pin
Ismaeel7-Apr-08 13:49
Ismaeel7-Apr-08 13:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.