Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pangerankodok

    Adding chart series with macro

    Hi all, I had spreadsheet contain chart. I want user to be able to paste new data, run the macro, and the new data will be appended into existing chart as new series I used this code (from macro recorder) and it works. <code> ActiveChart.SeriesCollection.NewSeries...
  2. pangerankodok

    Is there any way to put email body using Sendmail?

    Some of use are using Outlook XP, and the others Outlook 97. And it gave the same error message. Yes, I am interested in late binding that you mentioned. I suppose that will make life easier for usser, right? And do you have an URL that discuss this methode? Thks, a lot..
  3. pangerankodok

    Is there any way to put email body using Sendmail?

    Thanks RobBroekhuis, I tried the code, and the final code is this: ------ Sub emailme() Dim objOL As Outlook.Application Dim objMail As MailItem Set objOL = New Outlook.Application Set objMail = objOL.CreateItem(olMailItem) With objMail .To = &quot;me@yahoo.com&quot; .Subject =...
  4. pangerankodok

    Is there any way to put email body using Sendmail?

    Thanks Nikita6003, I am using Outlook, and after surfing around, I found this code -------------- Sub Button1_Click() Dim objOL As Outlook.Application Dim objMail As MailItem Set objOL = New Outlook.Application Set objMail = objOL.CreateItem(olMailItem) With objMail .To =...
  5. pangerankodok

    Is there any way to put email body using Sendmail?

    Hi All, I tried to send excel workbook automatically using Macro, and here is the syntax: Sub email() ActiveWorkbook.SendMail &quot;someone@yahoo.com&quot;, Range(&quot;subject&quot;).Value End Sub what I want is that user click the button, and the workbook automatically sent to...

Part and Inventory Search

Back
Top