Click here to Skip to main content
15,890,557 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: VBA question (not .net) Pin
EliottA20-Jan-09 7:06
EliottA20-Jan-09 7:06 
GeneralRe: VBA question (not .net) Pin
ChandraRam20-Jan-09 7:43
ChandraRam20-Jan-09 7:43 
QuestionCreating PDFs from Excel XML files Pin
Dominick Marciano19-Jan-09 9:47
professionalDominick Marciano19-Jan-09 9:47 
AnswerRe: Creating PDFs from Excel XML files Pin
Steven J Jowett19-Jan-09 22:29
Steven J Jowett19-Jan-09 22:29 
GeneralRe: Creating PDFs from Excel XML files Pin
Dominick Marciano21-Jan-09 7:24
professionalDominick Marciano21-Jan-09 7:24 
QuestionvbSendMail does not send email Pin
tatchung18-Jan-09 20:57
tatchung18-Jan-09 20:57 
AnswerRe: vbSendMail does not send email Pin
EliottA19-Jan-09 2:47
EliottA19-Jan-09 2:47 
AnswerRe: vbSendMail does not send email Pin
Mr Oizo19-Jan-09 2:49
Mr Oizo19-Jan-09 2:49 
I don't have the solution to your problem but I do have code that will work for you try:
Dim myMail As New MailMessage()
        Dim eFrom As New MailAddress("*****@****.***")
        myMail.From = eFrom

     
        myMail.To.Add("*****@*****.***")
        
        myMail.Subject = "Your subject"
        myMail.Priority = MailPriority.High
        myMail.Body = "Your message"
        Dim myAttachment As New Attachment("your attachment")

myMail.Attachments.Add(myAttachment)
   
        Dim smtpClient As New SmtpClient("**.**.**.**")    'Whatever your mail server address is
        smtpClient.Send(myMail)



Replacing any * with the proper character and leaving out anything you don't need. Also remember to import Imports System.Net.Mail
GeneralRe: vbSendMail does not send email Pin
Eddy Vluggen19-Jan-09 3:29
professionalEddy Vluggen19-Jan-09 3:29 
Question[Message Deleted] Pin
moonshaddow18-Jan-09 19:39
moonshaddow18-Jan-09 19:39 
AnswerRe: vb.net compact framework, windows mobile Pin
Mycroft Holmes18-Jan-09 20:57
professionalMycroft Holmes18-Jan-09 20:57 
QuestionBuild multiple Exes with one Exe Pin
pavanip18-Jan-09 18:29
pavanip18-Jan-09 18:29 
AnswerRe: Build multiple Exes with one Exe Pin
Mycroft Holmes18-Jan-09 21:01
professionalMycroft Holmes18-Jan-09 21:01 
GeneralRe: Build multiple Exes with one Exe Pin
pavanip18-Jan-09 21:14
pavanip18-Jan-09 21:14 
GeneralRe: Build multiple Exes with one Exe Pin
pavanip19-Jan-09 17:50
pavanip19-Jan-09 17:50 
GeneralRe: Build multiple Exes with one Exe Pin
Dave Kreskowiak20-Jan-09 2:17
mveDave Kreskowiak20-Jan-09 2:17 
GeneralRe: Build multiple Exes with one Exe Pin
Jon_Boy20-Jan-09 7:35
Jon_Boy20-Jan-09 7:35 
QuestionAdding a new record in XML Pin
Nanda_MR18-Jan-09 18:22
Nanda_MR18-Jan-09 18:22 
AnswerRe: Adding a new record in XML Pin
Mycroft Holmes18-Jan-09 21:08
professionalMycroft Holmes18-Jan-09 21:08 
AnswerRe: Adding a new record in XML Pin
N a v a n e e t h18-Jan-09 21:15
N a v a n e e t h18-Jan-09 21:15 
GeneralRe: Adding a new record in XML Pin
Nanda_MR18-Jan-09 23:26
Nanda_MR18-Jan-09 23:26 
QuestionRetain Text Format in Rich Text Box Pin
nishkarsh_k18-Jan-09 17:17
nishkarsh_k18-Jan-09 17:17 
QuestionRe: Retain Text Format in Rich Text Box Pin
nishkarsh_k18-Jan-09 18:04
nishkarsh_k18-Jan-09 18:04 
AnswerRe: Retain Text Format in Rich Text Box Pin
N a v a n e e t h18-Jan-09 21:22
N a v a n e e t h18-Jan-09 21:22 
GeneralRe: Retain Text Format in Rich Text Box Pin
supercat919-Jan-09 6:20
supercat919-Jan-09 6:20 

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.