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

Visual Basic

 
GeneralRe: Print Preview Pin
Socheat.Net14-Jun-06 21:15
Socheat.Net14-Jun-06 21:15 
QuestionEmail sending through vb.net application. Pin
hbk_leo12-Jun-06 22:47
hbk_leo12-Jun-06 22:47 
AnswerRe: Email sending through vb.net application. Pin
Tamimi - Code12-Jun-06 23:01
Tamimi - Code12-Jun-06 23:01 
GeneralRe: Email sending through vb.net application. Pin
Socheat.Net12-Jun-06 23:15
Socheat.Net12-Jun-06 23:15 
GeneralRe: Email sending through vb.net application. Pin
Tamimi - Code12-Jun-06 23:18
Tamimi - Code12-Jun-06 23:18 
GeneralRe: Email sending through vb.net application. Pin
Dave Kreskowiak13-Jun-06 2:06
mveDave Kreskowiak13-Jun-06 2:06 
GeneralRe: Email sending through vb.net application. Pin
scottgp13-Jun-06 2:07
professionalscottgp13-Jun-06 2:07 
GeneralRe: Email sending through vb.net application. Pin
jhoga13-Jun-06 10:14
jhoga13-Jun-06 10:14 
Imports System.Web.Mail

Private Sub e_mail()
'Create an instance of the MailMessage class
Dim mm As New MailMessage
mm.To = "bill@fun.com"
End Select
mm.From = "jhoga@salisburync.gov"

mm.Priority = MailPriority.High
mm.Subject = "Change made to receipt number: " & strSN
mm.Body = "Receipt Number: "
SmtpMail.SmtpServer = "mailserver"
SmtpMail.Send(mm)

End Sub

* note "mailserver' is name of a mailserver in my network
GeneralRe: Email sending through vb.net application. Pin
hbk_leo14-Jun-06 1:53
hbk_leo14-Jun-06 1:53 
GeneralRe: Email sending through vb.net application. Pin
Steven J Jowett14-Jun-06 6:24
Steven J Jowett14-Jun-06 6:24 
QuestionMergeCell in Excell VB.NET Pin
lucdt12-Jun-06 22:26
lucdt12-Jun-06 22:26 
QuestionConverter Pin
Socheat.Net12-Jun-06 22:09
Socheat.Net12-Jun-06 22:09 
QuestionMS Access database and VB Pin
Spiropoulos George12-Jun-06 21:31
Spiropoulos George12-Jun-06 21:31 
Questionhow to write a vb.net code using .ini file Pin
yaseerah12-Jun-06 20:29
yaseerah12-Jun-06 20:29 
AnswerRe: how to write a vb.net code using .ini file Pin
Steven J Jowett14-Jun-06 6:33
Steven J Jowett14-Jun-06 6:33 
Questionprinting form in VB6 Pin
Scorpio12-Jun-06 20:21
Scorpio12-Jun-06 20:21 
QuestionHow to remove null characters in a text file Pin
eddie.jiang.tw12-Jun-06 20:19
eddie.jiang.tw12-Jun-06 20:19 
QuestionMigrating VB 6.0 Data Report to VB.NET Crystal Report. Pin
BAIJUMAX12-Jun-06 19:35
professionalBAIJUMAX12-Jun-06 19:35 
QuestionHow to create stored procedure for executing a package ? Pin
SaravuthYos12-Jun-06 19:16
SaravuthYos12-Jun-06 19:16 
QuestionHow to assign parameter value to Stored procedure from the form in vb.net ? Pin
SaravuthYos12-Jun-06 19:02
SaravuthYos12-Jun-06 19:02 
AnswerRe: How to assign parameter value to Stored procedure from the form in vb.net ? Pin
Steven J Jowett14-Jun-06 6:56
Steven J Jowett14-Jun-06 6:56 
AnswerRe: How to group by hourly,daily,monthly... Pin
Dave Kreskowiak13-Jun-06 2:02
mveDave Kreskowiak13-Jun-06 2:02 
Questionhow do i know detail about textbox's event Pin
roitha12-Jun-06 16:36
roitha12-Jun-06 16:36 
AnswerRe: how do i know detail about textbox's event Pin
Dave Kreskowiak13-Jun-06 1:59
mveDave Kreskowiak13-Jun-06 1:59 
QuestionFunction Replace Pin
angelagke12-Jun-06 16:22
angelagke12-Jun-06 16:22 

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.