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

Visual Basic

 
GeneralRe: VBA question (not .net) Pin
EliottA20-Jan-09 6:44
EliottA20-Jan-09 6:44 
GeneralRe: VBA question (not .net) Pin
ChandraRam20-Jan-09 7:04
ChandraRam20-Jan-09 7:04 
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 
Hello! I've an application that uses vbSendMail.dll for emails. When in debug mode the application works smoothly. However once I've compiled/packaged the app using VS package and deployment wizard it does not send emails. Weird thing is it does not generate any error. vbSendMail.dll and mswinsck.ocx both have been included in the package and registered successfully. By the way I'm using vb6 for this app. This is the part of the email code

Set vbemail = New vbSendMail.clsSendMail
vbemail.SMTPHost = "****.*****.***"
vbemail.FromDisplayName = ""
sendemail
...................
vbemail.From = senderemail
            vbemail.CcRecipient = "*********"
            For i = 1 To Adodc3.Recordset.RecordCount
                vbemail.Recipient = vbemail.Recipient + Adodc3.Recordset!email + ";"
                Adodc3.Recordset.MoveNext
            Next i

            If Not txtemail.Text = "" Then
                vbemail.CcRecipient = vbemail.CcRecipient + ";" + txtemail.Text
            End If

            vbemail.Attachment = Adodc1.Recordset!screenshot
            vbemail.Subject = "[INCIDENT] WSA " & Adodc1.Recordset!incident & "  " & Adodc1.Recordset!datereported
            vbemail.Message = "Hi Sir/Ma'am" & Chr(13) & Chr(13) & "IR NO. : " & Adodc1.Recordset!irno & Chr(13) & "STATUS: " & Adodc1.Recordset!Status & Chr(13) & "PROBLEM CLASSIFICATION: " & Adodc1.Recordset!problemclassification & Chr(13) & "PROBLEM: " & Adodc1.Recordset!problem & Chr(13) & "RESOLUTION: " & Adodc1.Recordset!resolution & Chr(13) & Chr(13) & "WEBSITE: " & Adodc1.Recordset!websitename & Chr(13) & "DETAILS:" & Adodc1.Recordset!details & Chr(13) & "URL / LINK: " & Adodc1.Recordset!url & Chr(13) & "BROWSER USED: " & Adodc1.Recordset!browsertype & Chr(13) & Chr(13) & fulln & Chr(13) & departmnt
            vbemail.Send
            Set vbemail = Nothing
            MsgBox "Email Sent", vbExclamation


Thanks in advance for any assistance on this dilemma Blush | :O

Aim small, miss small

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 
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 

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.