Outlook mail send code
Below code copy and paste module
click here for download file:- Outlook send mail file
_______________________________________________
Sub Send_Mail()
Dim outlookobj As Outlook.Application
Dim mitem As Outlook.MailItem
Set outlookobj = New Outlook.Application
Set mitem = outlookobj.CreateItem(olMailItem)
With...
How to create right click commnad bar in excel
Paste code in thisworkbook(vba code) in excel file
For click example file download:- click here Right click commandbar file download
Note after code paste file save in macro xlsm format and open again
Copy below code
__________________________________________________________
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Dim...