Click here to Skip to main content
15,892,809 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Component to generate pdf or tiff from templates Pin
DigiOz Multimedia19-Nov-07 8:52
DigiOz Multimedia19-Nov-07 8:52 
GeneralRe: Component to generate pdf or tiff from templates Pin
Nitin198119-Nov-07 19:26
Nitin198119-Nov-07 19:26 
GeneralRe: Component to generate pdf or tiff from templates Pin
DigiOz Multimedia27-Nov-07 6:07
DigiOz Multimedia27-Nov-07 6:07 
QuestionAddint items to a combobox Pin
Dave McCool19-Nov-07 0:36
Dave McCool19-Nov-07 0:36 
AnswerRe: Addint items to a combobox Pin
AliAmjad19-Nov-07 2:49
AliAmjad19-Nov-07 2:49 
GeneralRe: Addint items to a combobox Pin
Luc Pattyn19-Nov-07 10:12
sitebuilderLuc Pattyn19-Nov-07 10:12 
GeneralRe: Addint items to a combobox Pin
Dave McCool20-Nov-07 23:02
Dave McCool20-Nov-07 23:02 
Questionhow 2 send pic with mail plz help! Pin
King of Kingz19-Nov-07 0:13
King of Kingz19-Nov-07 0:13 
i m using Smtp for sending mail. I m getting body text from an html editor. This editor uses webbrowser control. Problem is this, when i put an image on the webbrowser control and send it to a mailing address it don't show the pic but all the test is ok.
here's the code i use.
Dim MailObj As Net.Mail.MailMessage = New Net.Mail.MailMessage()
MailObj.To.Add("sampleemailaddress@exampledomain.com")
MailObj.From = New Net.Mail.MailAddress("myemailaddress@somedomain.com", "King")
mailObj.Priority = Net.Mail.MailPriority.Normal
MailObj.Subject = "This is test mail"
mailObj.Body = WebBrowser1.DocumentText
Dim smtpcli As Net.Mail.SmtpClient = New Net.Mail.SmtpClient("smtp.gmail.com", 587)
smtpcli.EnableSsl = True
smtpcli.DeliveryMethod = Net.Mail.SmtpDeliveryMethod.Network
smtpcli.Credentials = New Net.NetworkCredential("someemailaddress@gmail.com", "password")
Try
smtpcli.Send(MailObj)
MsgBox("Email successfully delivered.")
Catch ex As Exception
MsgBox(ex.ToString())
End Try

Thx in advance for any help.....


King

AnswerRe: how 2 send pic with mail plz help! Pin
_mubashir19-Nov-07 2:00
_mubashir19-Nov-07 2:00 
AnswerRe: how 2 send pic with mail plz help! Pin
AliAmjad19-Nov-07 3:02
AliAmjad19-Nov-07 3:02 
QuestionIndexOutOfRange..please help Pin
kc_renji18-Nov-07 22:48
kc_renji18-Nov-07 22:48 
AnswerRe: IndexOutOfRange..please help Pin
Colin Angus Mackay18-Nov-07 22:58
Colin Angus Mackay18-Nov-07 22:58 
GeneralRe: IndexOutOfRange..please help Pin
kc_renji18-Nov-07 23:02
kc_renji18-Nov-07 23:02 
AnswerRe: IndexOutOfRange..please help Pin
Colin Angus Mackay18-Nov-07 23:00
Colin Angus Mackay18-Nov-07 23:00 
GeneralRe: IndexOutOfRange..please help Pin
kc_renji18-Nov-07 23:05
kc_renji18-Nov-07 23:05 
GeneralRe: IndexOutOfRange..please help Pin
Colin Angus Mackay18-Nov-07 23:47
Colin Angus Mackay18-Nov-07 23:47 
GeneralRe: IndexOutOfRange..please help Pin
kc_renji18-Nov-07 23:07
kc_renji18-Nov-07 23:07 
GeneralRe: IndexOutOfRange..please help Pin
Colin Angus Mackay18-Nov-07 23:50
Colin Angus Mackay18-Nov-07 23:50 
GeneralRe: IndexOutOfRange..please help Pin
kc_renji27-Nov-07 5:43
kc_renji27-Nov-07 5:43 
Questionvb2005 Pin
vb.net818-Nov-07 22:05
vb.net818-Nov-07 22:05 
AnswerRe: vb2005 Pin
DigiOz Multimedia19-Nov-07 8:55
DigiOz Multimedia19-Nov-07 8:55 
AnswerRe: vb2005 Pin
nishkarsh_k19-Nov-07 16:38
nishkarsh_k19-Nov-07 16:38 
QuestionHow to save datagridview contents into xml and retrieve the same Pin
VB 8.018-Nov-07 20:37
VB 8.018-Nov-07 20:37 
Questioncode error Pin
kc_renji18-Nov-07 20:36
kc_renji18-Nov-07 20:36 
AnswerRe: code error Pin
pmarfleet18-Nov-07 21:27
pmarfleet18-Nov-07 21:27 

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.