Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
rossano_praderi
in reply to: Anonymous

You have to use an Ilogic rule in order to use this Ilogic function "GoExcel.CellValue...".

 

Last week, I've sent you a private msg with code and explainations on how to do it.

 

This is your original VBA subroutine converted in Ilogic code, change it as you need...

Private Sub Mailversand()
Dim OlApp As Object = CreateObject("Outlook.Application")
Dim Nachricht As Object = OlApp.CreateItem(0)
	With Nachricht
		'.To = "test@test.de"
		'.Subject = "Betreff "
		.attachments.Add(sFile)
		'.attachments.Add(pFile)
'		.attachments.Add("C:\Users\Aleksandar.Jovicic\Desktop\FGL\Steps\Glashalter oben.stp")
'		.attachments.Add("C:\Users\Aleksandar.Jovicic\Desktop\FGL\Steps\Glashalter unten.stp")
'		.attachments.Add("C:\Users\Aleksandar.Jovicic\Desktop\FGL\Zeichnungen\Glashalter oben.pdf")
'		.attachments.Add("C:\Users\Aleksandar.Jovicic\Desktop\FGL\Zeichnungen\Glashalter unten.pdf")
'		.attachments.Add("C:\Users\Aleksandar.Jovicic\Desktop\FGL\Zeichnungen\Glashalter mitte.pdf")
		'.Body = "Mailtext"
		.Display
		'.Mail.Send
	End With
OlApp = Nothing
Nachricht = Nothing
End Sub

Please, stop spamming the forum with the same questions.

 

 

Bregs

Rossano Praderi



--------------------------------------
If my post answers your question, please click the "Accept as Solution"
button. This helps everyone find answers more quickly!
---------------