472,364 Members | 1,878 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,364 software developers and data experts.

Sending Mails

Dear All
How can i send mails using vb.net
Thanx all
Dec 7 '05 #1
6 2613
Sending Mail Using Dot net

System.Web.Mail
---------------
namespace provides the classes for sending Email in Dot net.

MailMessage
-----------
Manage the mail message contents.

Properties
==========

Attachment
-----------
Specifies the list of the attachments that are transmitted with the
message

Bcc
-----------
A list of semicolon delimited email addresses that receive a Blind
Carbon Copy of the message

Body
-----------
Contains the message text that has to be sent.

BodyEncoding
-------------
The encoding type of the email message.

BodyFormat
-----------
Defines the content type of the body of the message

Cc
-----------
A list of semicolon delimited email addresses that receive a Carbon Copy
of the message

From
-----------
The email address of the sender.

Header
-----------
Specifies the custom headers which are transmitted with the
Message

Priority
-----------
The priority of the email message

Subject
-----------
Subject Line of the email message.

To
-----------
email address of the recipient.

MailAttachments
----------------
Manage the mail attachment.

SmtpMail
-----------
Send email to the mail server.

Let us see it step by step
============================

Create a Visual basic application
And drop following controls and set the properties accordingly

Control Property
======== ==========

Label Text : Smtp Server

TextBox Name : txtSMTPServer

Label Text : From

TextBox Name : txtFrom

Label Text : From Display Name

TextBox Name : txtFromDisplayName

Label Text : Recipient

TextBox txtTo

Label Text : Attachment

ListBox Name : lstAttachment

Label Text : Subject

TextBox Name : txtSubject

Label Text : Message

TextBox Name : txtMessage
Multiline : True
Scrollbars : Both

Button Text : Add attachment
Name : BtnAdd
Button Text : Remove attachment
Name : btnRemove
Button Text : Send
Name : btnSend
CheckBox Text: Send As HTML
Name : chkFormat
OpenFileDialog Name : OFD
DefaultExt : *.*
InitialDirectory : c:\
Multiselect : true

Now let us see the coding part
==============================
'Invoke the Code widow and type the following statement above the Class
declaration

Imports System.Web.Mail '''-->Code

Within the Class declaration, in the general section declare variables
required for this project

' Variable which will send the mail

Dim obj As System.Web.Mail.SmtpMail '''-->Code
'Variable to store the attachments
Dim Attachment As System.Web.Mail.MailAttachment '''-->Code

'Variable to create the message to send
Dim Mailmsg As New System.Web.Mail.MailMessage() '''-->Code

'Double click on the addattachment button to add the code

'Type the following lines

'Show open dialogue box to select the files to attach

Dim Counter As Integer '''-->Code
OFD.CheckFileExists = True '''-->Code
OFD.Title = "Select file(s) to attach" '''-->Code
OFD.ShowDialog() '''-->Code

For Counter = 0 To UBound(OFD.FileNames) '''-->Code
lstAttachment.Items.Add(OFD.FileNames(Counter)) '''-->Code
Next '''-->Code

'Double Click on the Removeattachment button

'Type the following lines

'Remove the attachments
If lstAttachment.SelectedIndex > -1 Then '''-->Code
lstAttachment.Items.RemoveAt(lstAttachment.Selecte dIndex) '''-->Code
End If '''-->Code

'Double Click on the Send button

'Type the following lines
Dim Counter As Integer '''-->Code

'Validate the data
If txtSMTPServer.Text = "" Then '''-->Code
MsgBox("Enter the SMTP server info ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

If txtFrom.Text = "" Then '''-->Code
MsgBox("Enter the From email address ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

If txtTo.Text = "" Then '''-->Code
MsgBox("Enter the Recipient email address ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

If txtSubject.Text = "" Then '''-->Code
MsgBox("Enter the Email subject ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

'Set the properties
‘Assign the SMTP server
obj.SmtpServer = txtSMTPServer.Text '''-->Code
'Multiple recepients can be specified using ; as the delimeter
‘Address of the recipient
Mailmsg.To = txtTo.Text '''-->Code
‘Your From Address
‘You can also use a custom header Reply-To for a different replyto
'address
Mailmsg.From = "\" & txtFromDisplayName.Text & "\ <" & txtFrom.Text &
">" '''-->Code
'Specify the body format
If chkFormat.Checked = True Then '''-->Code
Mailmsg.BodyFormat = MailFormat.Html 'Send the mail in HTML Format
Else '''-->Code
Mailmsg.BodyFormat = MailFormat.Text '''-->Code
End If '''-->Code

'If you want you can add a reply to header
'Mailmsg.Headers.Add("Reply-To", "Ma***@geinetech.net")
'custom headersare added like this
'Mailmsg.Headers.Add("Manoj", "TestHeader")

‘Mail Subject
Mailmsg.Subject = txtSubject.Text '''-->Code

‘Attach the files one by one
For Counter = 0 To lstAttachment.Items.Count - 1 '''-->Code
Attachment = New MailAttachment(lstAttachment.Items(Counter))
‘Add it to the mail message
Mailmsg.Attachments.Add(Attachment) '''-->Code
Next '''-->Code

‘Mail Body
Mailmsg.Body = txtMessage.Text '''-->Code
‘Call the send method to send the mail
obj.Send(Mailmsg) '''-->Code

************************************************** *********************
Send SMTP mail using VB.NET
By Chris Dufour

http://www.codeproject.com/vb/net/epsendmail.asp

Bye
Venkat_KL

For Anything and Everything, Please Let Me Know

--
Sent via .NET Newsgroups
http://www.dotnetnewsgroups.com
Dec 7 '05 #2
Hi,

http://www.systemwebmail.net/

Greetz Peter

--
Programming today is a race between software engineers striving to build
bigger and better idiot-proof programs, and the Universe trying to produce
bigger and better idiots. So far, the Universe is winning. (Rich Cook)

"Venkat_KL" <ve*******@yahoo.com> schreef in bericht
news:Ob**************@TK2MSFTNGP11.phx.gbl...
Sending Mail Using Dot net

System.Web.Mail
---------------
namespace provides the classes for sending Email in Dot net.

MailMessage
-----------
Manage the mail message contents.

Properties
==========

Attachment
-----------
Specifies the list of the attachments that are transmitted with the
message

Bcc
-----------
A list of semicolon delimited email addresses that receive a Blind
Carbon Copy of the message

Body
-----------
Contains the message text that has to be sent.

BodyEncoding
-------------
The encoding type of the email message.

BodyFormat
-----------
Defines the content type of the body of the message

Cc
-----------
A list of semicolon delimited email addresses that receive a Carbon Copy
of the message

From
-----------
The email address of the sender.

Header
-----------
Specifies the custom headers which are transmitted with the
Message

Priority
-----------
The priority of the email message

Subject
-----------
Subject Line of the email message.

To
-----------
email address of the recipient.

MailAttachments
----------------
Manage the mail attachment.

SmtpMail
-----------
Send email to the mail server.

Let us see it step by step
============================

Create a Visual basic application
And drop following controls and set the properties accordingly

Control Property
======== ==========

Label Text : Smtp Server

TextBox Name : txtSMTPServer

Label Text : From

TextBox Name : txtFrom

Label Text : From Display Name

TextBox Name : txtFromDisplayName

Label Text : Recipient

TextBox txtTo

Label Text : Attachment

ListBox Name : lstAttachment

Label Text : Subject

TextBox Name : txtSubject

Label Text : Message

TextBox Name : txtMessage
Multiline : True
Scrollbars : Both

Button Text : Add attachment
Name : BtnAdd
Button Text : Remove attachment
Name : btnRemove
Button Text : Send
Name : btnSend
CheckBox Text: Send As HTML
Name : chkFormat
OpenFileDialog Name : OFD
DefaultExt : *.*
InitialDirectory : c:\
Multiselect : true

Now let us see the coding part
==============================
'Invoke the Code widow and type the following statement above the Class
declaration

Imports System.Web.Mail '''-->Code

Within the Class declaration, in the general section declare variables
required for this project

' Variable which will send the mail

Dim obj As System.Web.Mail.SmtpMail '''-->Code
'Variable to store the attachments
Dim Attachment As System.Web.Mail.MailAttachment '''-->Code

'Variable to create the message to send
Dim Mailmsg As New System.Web.Mail.MailMessage() '''-->Code

'Double click on the addattachment button to add the code

'Type the following lines

'Show open dialogue box to select the files to attach

Dim Counter As Integer '''-->Code
OFD.CheckFileExists = True '''-->Code
OFD.Title = "Select file(s) to attach" '''-->Code
OFD.ShowDialog() '''-->Code

For Counter = 0 To UBound(OFD.FileNames) '''-->Code
lstAttachment.Items.Add(OFD.FileNames(Counter)) '''-->Code
Next '''-->Code

'Double Click on the Removeattachment button

'Type the following lines

'Remove the attachments
If lstAttachment.SelectedIndex > -1 Then '''-->Code
lstAttachment.Items.RemoveAt(lstAttachment.Selecte dIndex) '''-->Code
End If '''-->Code

'Double Click on the Send button

'Type the following lines
Dim Counter As Integer '''-->Code

'Validate the data
If txtSMTPServer.Text = "" Then '''-->Code
MsgBox("Enter the SMTP server info ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

If txtFrom.Text = "" Then '''-->Code
MsgBox("Enter the From email address ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

If txtTo.Text = "" Then '''-->Code
MsgBox("Enter the Recipient email address ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

If txtSubject.Text = "" Then '''-->Code
MsgBox("Enter the Email subject ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

'Set the properties
'Assign the SMTP server
obj.SmtpServer = txtSMTPServer.Text '''-->Code
'Multiple recepients can be specified using ; as the delimeter
'Address of the recipient
Mailmsg.To = txtTo.Text '''-->Code
'Your From Address
'You can also use a custom header Reply-To for a different replyto
'address
Mailmsg.From = "\" & txtFromDisplayName.Text & "\ <" & txtFrom.Text &
">" '''-->Code
'Specify the body format
If chkFormat.Checked = True Then '''-->Code
Mailmsg.BodyFormat = MailFormat.Html 'Send the mail in HTML Format
Else '''-->Code
Mailmsg.BodyFormat = MailFormat.Text '''-->Code
End If '''-->Code

'If you want you can add a reply to header
'Mailmsg.Headers.Add("Reply-To", "Ma***@geinetech.net")
'custom headersare added like this
'Mailmsg.Headers.Add("Manoj", "TestHeader")

'Mail Subject
Mailmsg.Subject = txtSubject.Text '''-->Code

'Attach the files one by one
For Counter = 0 To lstAttachment.Items.Count - 1 '''-->Code
Attachment = New MailAttachment(lstAttachment.Items(Counter))
'Add it to the mail message
Mailmsg.Attachments.Add(Attachment) '''-->Code
Next '''-->Code

'Mail Body
Mailmsg.Body = txtMessage.Text '''-->Code
'Call the send method to send the mail
obj.Send(Mailmsg) '''-->Code

************************************************** *********************
Send SMTP mail using VB.NET
By Chris Dufour

http://www.codeproject.com/vb/net/epsendmail.asp

Bye
Venkat_KL

For Anything and Everything, Please Let Me Know

--
Sent via .NET Newsgroups
http://www.dotnetnewsgroups.com

Dec 7 '05 #3
I use OpenSMTP (use google)

Because i need to send emails that include both text and HTML version in
same mail, with embeddet graphics.

/Søren Reinke

"Venkat_KL" <ve*******@yahoo.com> wrote in message
news:Ob****************@TK2MSFTNGP11.phx.gbl...
Sending Mail Using Dot net

System.Web.Mail
---------------
namespace provides the classes for sending Email in Dot net.

MailMessage
-----------
Manage the mail message contents.

Properties
==========

Attachment
-----------
Specifies the list of the attachments that are transmitted with the
message

Bcc
-----------
A list of semicolon delimited email addresses that receive a Blind
Carbon Copy of the message

Body
-----------
Contains the message text that has to be sent.

BodyEncoding
-------------
The encoding type of the email message.

BodyFormat
-----------
Defines the content type of the body of the message

Cc
-----------
A list of semicolon delimited email addresses that receive a Carbon Copy
of the message

From
-----------
The email address of the sender.

Header
-----------
Specifies the custom headers which are transmitted with the
Message

Priority
-----------
The priority of the email message

Subject
-----------
Subject Line of the email message.

To
-----------
email address of the recipient.

MailAttachments
----------------
Manage the mail attachment.

SmtpMail
-----------
Send email to the mail server.

Let us see it step by step
============================

Create a Visual basic application
And drop following controls and set the properties accordingly

Control Property
======== ==========

Label Text : Smtp Server

TextBox Name : txtSMTPServer

Label Text : From

TextBox Name : txtFrom

Label Text : From Display Name

TextBox Name : txtFromDisplayName

Label Text : Recipient

TextBox txtTo

Label Text : Attachment

ListBox Name : lstAttachment

Label Text : Subject

TextBox Name : txtSubject

Label Text : Message

TextBox Name : txtMessage
Multiline : True
Scrollbars : Both

Button Text : Add attachment
Name : BtnAdd
Button Text : Remove attachment
Name : btnRemove
Button Text : Send
Name : btnSend
CheckBox Text: Send As HTML
Name : chkFormat
OpenFileDialog Name : OFD
DefaultExt : *.*
InitialDirectory : c:\
Multiselect : true

Now let us see the coding part
==============================
'Invoke the Code widow and type the following statement above the Class
declaration

Imports System.Web.Mail '''-->Code

Within the Class declaration, in the general section declare variables
required for this project

' Variable which will send the mail

Dim obj As System.Web.Mail.SmtpMail '''-->Code
'Variable to store the attachments
Dim Attachment As System.Web.Mail.MailAttachment '''-->Code

'Variable to create the message to send
Dim Mailmsg As New System.Web.Mail.MailMessage() '''-->Code

'Double click on the addattachment button to add the code

'Type the following lines

'Show open dialogue box to select the files to attach

Dim Counter As Integer '''-->Code
OFD.CheckFileExists = True '''-->Code
OFD.Title = "Select file(s) to attach" '''-->Code
OFD.ShowDialog() '''-->Code

For Counter = 0 To UBound(OFD.FileNames) '''-->Code
lstAttachment.Items.Add(OFD.FileNames(Counter)) '''-->Code
Next '''-->Code

'Double Click on the Removeattachment button

'Type the following lines

'Remove the attachments
If lstAttachment.SelectedIndex > -1 Then '''-->Code
lstAttachment.Items.RemoveAt(lstAttachment.Selecte dIndex) '''-->Code
End If '''-->Code

'Double Click on the Send button

'Type the following lines
Dim Counter As Integer '''-->Code

'Validate the data
If txtSMTPServer.Text = "" Then '''-->Code
MsgBox("Enter the SMTP server info ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

If txtFrom.Text = "" Then '''-->Code
MsgBox("Enter the From email address ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

If txtTo.Text = "" Then '''-->Code
MsgBox("Enter the Recipient email address ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

If txtSubject.Text = "" Then '''-->Code
MsgBox("Enter the Email subject ...!!!", '''-->Code
MsgBoxStyle.Information, "Send Email") '''-->Code
Exit Sub '''-->Code
End If '''-->Code

'Set the properties
'Assign the SMTP server
obj.SmtpServer = txtSMTPServer.Text '''-->Code
'Multiple recepients can be specified using ; as the delimeter
'Address of the recipient
Mailmsg.To = txtTo.Text '''-->Code
'Your From Address
'You can also use a custom header Reply-To for a different replyto
'address
Mailmsg.From = "\" & txtFromDisplayName.Text & "\ <" & txtFrom.Text &
">" '''-->Code
'Specify the body format
If chkFormat.Checked = True Then '''-->Code
Mailmsg.BodyFormat = MailFormat.Html 'Send the mail in HTML Format
Else '''-->Code
Mailmsg.BodyFormat = MailFormat.Text '''-->Code
End If '''-->Code

'If you want you can add a reply to header
'Mailmsg.Headers.Add("Reply-To", "Ma***@geinetech.net")
'custom headersare added like this
'Mailmsg.Headers.Add("Manoj", "TestHeader")

'Mail Subject
Mailmsg.Subject = txtSubject.Text '''-->Code

'Attach the files one by one
For Counter = 0 To lstAttachment.Items.Count - 1 '''-->Code
Attachment = New MailAttachment(lstAttachment.Items(Counter))
'Add it to the mail message
Mailmsg.Attachments.Add(Attachment) '''-->Code
Next '''-->Code

'Mail Body
Mailmsg.Body = txtMessage.Text '''-->Code
'Call the send method to send the mail
obj.Send(Mailmsg) '''-->Code

************************************************** *********************
Send SMTP mail using VB.NET
By Chris Dufour

http://www.codeproject.com/vb/net/epsendmail.asp

Bye
Venkat_KL

For Anything and Everything, Please Let Me Know

--
Sent via .NET Newsgroups
http://www.dotnetnewsgroups.com

Dec 7 '05 #4
One more sample:

call the below procedure like this

SendMail("YES");

in a button click or any other event handler

'Dont forgrt to include the following namespace.
'using System.Web;
'using System.Web.Mail;
Public Shared Sub SendMail(ByVal success As String)
Try
' Construct a new mail message
Dim message As MailMessage = New MailMessage()
message.From = "an*******@lankaequities.com"
message.To = "ve*******@hotmail.com"
message.Cc = "ve*******@gmail.com"
message.Subject = "Hello from C# Winforms Application"
message.Body = "The backup started at: " + DateTime.Now + "\r and
ended "
+ success + " at :" + DateTime.Today.ToLongDateString() +
DateTime.Now
'if you want attach file with this mail, add the line below
'message.Attachments.Add(new MailAttachment("c:\\attach.txt",
'MailEncoding.Base64));

' Send the message
SmtpMail.Send(message)

Catch ex As Exception
System.Diagnostics.EventLog.WriteEnTry("BackupAppl ication","Error
occured while sending the
mail",System.Diagnostics.EventLogEnTryType.Error)
System.Console.WriteLine(ex.Message.ToString())
End Try

End Sub

For Anything and Everything, Please Let Me Know

--
Sent via .NET Newsgroups
http://www.dotnetnewsgroups.com
Dec 7 '05 #5
"Anuradha" <an*******@lankaequities.com> schrieb:
How can i send mails using vb.net


..NET 1.0/1.1: 'System.Web.Mail'.
..NET 2.0: 'System.Net.Mail'.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Dec 7 '05 #6
Dear All

I tried below method to send mails but when the mail sends it gives an error
saying

Error MSG

====================================

An unhandled exception of type 'System.Web.HttpException' occurred in
system.web.dll

Additional information: Could not access 'CDO.Message' object.

=====================================

How can I get up from this error?

Thx
Anuradha

"Venkat_KL" <ve*******@yahoo.com> wrote in message
news:ew**************@TK2MSFTNGP12.phx.gbl...
One more sample:

call the below procedure like this

SendMail("YES");

in a button click or any other event handler

'Dont forgrt to include the following namespace.
'using System.Web;
'using System.Web.Mail;
Public Shared Sub SendMail(ByVal success As String)
Try
' Construct a new mail message
Dim message As MailMessage = New MailMessage()
message.From = "an*******@lankaequities.com"
message.To = "ve*******@hotmail.com"
message.Cc = "ve*******@gmail.com"
message.Subject = "Hello from C# Winforms Application"
message.Body = "The backup started at: " + DateTime.Now + "\r and
ended "
+ success + " at :" + DateTime.Today.ToLongDateString() +
DateTime.Now
'if you want attach file with this mail, add the line below
'message.Attachments.Add(new MailAttachment("c:\\attach.txt",
'MailEncoding.Base64));

' Send the message
SmtpMail.Send(message)

Catch ex As Exception
System.Diagnostics.EventLog.WriteEnTry("BackupAppl ication","Error
occured while sending the
mail",System.Diagnostics.EventLogEnTryType.Error)
System.Console.WriteLine(ex.Message.ToString())
End Try

End Sub

For Anything and Everything, Please Let Me Know

--
Sent via .NET Newsgroups
http://www.dotnetnewsgroups.com

Dec 8 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Stuart Mueller | last post by:
I have an exchange server, that I sometimes use to perform mail shots to clients on our database, these can be upwards of 1000 at a time. As we don't want different clients to see who we are...
3
by: martin smith | last post by:
Here's the scenario. I'm currently using cdosys/asp to send mail to our SMTP server. We use a product called MailFilter to check for SPAM. It doesn't work very well. If MailFilter isn't working...
1
by: Jayakumar | last post by:
HI, I am using System.web.mail class in my application to send mails. I am using SMTP server for the same. I can send mail to the intranet addresses, But when i send mails to Hotmail or other...
7
by: Lau | last post by:
I need to send 1000 emails from an asp.net website. Normally I would use System.Web.Mail.MailMessage() to send thru an SMTP server. But the large amount of emails results in a timeout. My server...
5
by: cashdeskmac | last post by:
I am writing a web application will will be hosted on a few peoples laptops as a local application. It will send e-mails once the user connects to the internet. How can I set up the "Mail.From"...
1
by: Dirk Goossens | last post by:
Hello! I'm sending E-mails to mailadresses in a table, using the code below. How can I send more than one attachment? Access can find the file to be send in this field: MY_EMAILATTACHMENT_FIELD...
8
by: Michel Posseth [MCP] | last post by:
Hi does someone has experience with this ?? i have made a lot of apps in the past that were capable of sending e-mails the server i then talked to was a Linux SMTP server and it worked great ...
1
by: gemma.gill | last post by:
Hi There, I have a button on a form within access that sends a verification e- mail. My problem is that these e-mails are sending from individual user accounts rather than a genieric mailbox. ...
3
by: dskinibbyb | last post by:
Hi Everybody, I am sending mail using the new class in .Net 2.0. Here while sending internal mails it is giving me problem. Carriage return, Line feed and Spaces are lost while sending mails....
2
by: srinivaspnv21 | last post by:
hi every one, plz help me out, i have to send mails from my asp.net page.... I have tried a code where mails are going only to gmail users the code is ... namespace: using System.Web.Mail;...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
1
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.