Click here to Skip to main content
15,891,981 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: VB.NET Date Functions Calculations Pin
Member 442053429-Mar-10 23:08
Member 442053429-Mar-10 23:08 
GeneralRe: VB.NET Date Functions Calculations Pin
Member 442053429-Mar-10 23:23
Member 442053429-Mar-10 23:23 
GeneralRe: VB.NET Date Functions Calculations Pin
Steven J Jowett29-Mar-10 23:42
Steven J Jowett29-Mar-10 23:42 
QuestionResize external application Pin
csanmba29-Mar-10 10:55
csanmba29-Mar-10 10:55 
AnswerRe: Resize external application Pin
Tarakeshwar Reddy29-Mar-10 12:15
professionalTarakeshwar Reddy29-Mar-10 12:15 
GeneralRe: Resize external application Pin
csanmba30-Mar-10 1:43
csanmba30-Mar-10 1:43 
QuestionOK Going Mad...VB.Net Mail Pin
Dalek Dave29-Mar-10 9:59
professionalDalek Dave29-Mar-10 9:59 
AnswerRe: OK Going Mad...VB.Net Mail Pin
nlarson1129-Mar-10 10:18
nlarson1129-Mar-10 10:18 
Something like this?

Public Sub SendMessage(ByVal sTOList As String, ByVal sSubject As String, _
                            ByVal sBody As String, ByVal sCallingRoutine As String)
     Dim oMsg As New MailMessage
     With oMsg
         .From = New MailAddress("xxxxxx@xxxxx.com")
         For Each sAddr As String In Split(sTOList, ";")
             .To.Add(sAddr)
         Next
         .Priority = MailPriority.Normal
         .Subject = sSubject
         .Body = sBody
     End With
     Try
         Dim oSMTP As New SmtpClient
         oSMTP.Host = "xxxxxxxx"
         oSMTP.Send(oMsg)
     Catch ex As Exception
         MessageBox.Show("Could not send the status email message." & ControlChars.CrLf & _ ex.ToString, sCallingRoutine, MessageBoxButtons.OK, MessageBoxIcon.Stop)
     End Try
 End Sub

'Never argue with an idiot; they'll drag you down to their level and beat you with experience.' ~ anonymous

'Life's real failure is when you do not realize how close you were to success when you gave up.' ~ anonymous


GeneralRe: OK Going Mad...VB.Net Mail Pin
Dalek Dave29-Mar-10 21:27
professionalDalek Dave29-Mar-10 21:27 
QuestionNew line to be added to a mail message [modified] Don't Worry, got it! Pin
Dalek Dave29-Mar-10 8:56
professionalDalek Dave29-Mar-10 8:56 
AnswerRe: New line to be added to a mail message [modified] Don't Worry, got it! Pin
nlarson1129-Mar-10 10:23
nlarson1129-Mar-10 10:23 
QuestionStatic Variables for Grade Counting Program [modified] - SOLVED Pin
Adam Wike29-Mar-10 4:39
Adam Wike29-Mar-10 4:39 
AnswerRe: Static Variables for Grade Counting Program Pin
Estys29-Mar-10 5:09
Estys29-Mar-10 5:09 
AnswerRe: Static Variables for Grade Counting Program Pin
Steven J Jowett29-Mar-10 6:12
Steven J Jowett29-Mar-10 6:12 
GeneralRe: Static Variables for Grade Counting Program Pin
Adam Wike30-Mar-10 4:17
Adam Wike30-Mar-10 4:17 
GeneralRe: Static Variables for Grade Counting Program Pin
Steven J Jowett30-Mar-10 4:35
Steven J Jowett30-Mar-10 4:35 
GeneralRe: Static Variables for Grade Counting Program Pin
Adam Wike30-Mar-10 4:51
Adam Wike30-Mar-10 4:51 
GeneralRe: Static Variables for Grade Counting Program Pin
Steven J Jowett30-Mar-10 5:56
Steven J Jowett30-Mar-10 5:56 
Questionscript to copy web page contents into text file Pin
220828-Mar-10 18:41
220828-Mar-10 18:41 
AnswerRe: script to copy web page contents into text file Pin
DaveAuld28-Mar-10 23:07
professionalDaveAuld28-Mar-10 23:07 
QuestionTwo checkbox in single column of datagridview Pin
C#Coudou28-Mar-10 13:44
C#Coudou28-Mar-10 13:44 
AnswerRe: Two checkbox in single column of datagridview Pin
Dave Kreskowiak28-Mar-10 14:22
mveDave Kreskowiak28-Mar-10 14:22 
Questioninstalling application [modified] .... resolved Pin
Daniel Engelkes28-Mar-10 12:55
Daniel Engelkes28-Mar-10 12:55 
AnswerRe: installing application Pin
Dalek Dave28-Mar-10 13:09
professionalDalek Dave28-Mar-10 13:09 
GeneralRe: installing application Pin
Daniel Engelkes28-Mar-10 13:24
Daniel Engelkes28-Mar-10 13:24 

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.