Click here to Skip to main content
15,891,567 members

Comments by Kraeven (Top 5 by date)

Kraeven 7-Dec-11 4:33am View    
Deleted
Reason for my vote of 1
best & easiest & managed code
Kraeven 8-Mar-11 6:10am View    
Deleted
Is this correct?

Dim timeout As Integer
Dim mailAtt As MailAttachment
For x As Integer = 0 To attachments.Length - 1
mailAtt = DirectCast(attachments(x), MailAttachment)
timeout = timeout + ((mailAtt.Size / 1024) * 1000)
Next
Smtp.Timeout = timeout
Kraeven 8-Mar-11 5:12am View    
Deleted
Hi,

A question; can you tell me how to make this .NET 2.0 compatible?

Especially this line:

Smtp.Timeout = attachments.Sum(Function(Item) (DirectCast(Item, MailAttachment).Size / 1024)) * 1000

Array.Sum doesn't exist in .NET 2.0 or 3.5

Many thanks!
Kraeven 8-Mar-11 2:40am View    
Deleted
Keep up the good work!

Knowledge needs to be shared to enlighten the world... ~ Kraeven
Kraeven 8-Jul-10 10:49am View    
You're welcome...