About 27,700,000 results
Open links in new tab
  1. What's the difference between Sender, From and Return-Path?

    What's the difference between an email Sender, From and Return-Path value? Example: I have a contact form where the user can input their email, would this be assigned to sender, from or …

  2. What is the use of "object sender" and "EventArgs e" parameters?

    Jan 23, 2013 · In case of Page_Load, Init and other page events, what is the use of these (object sender, EventArgs e) parameters? Examples would be more helpful.

  3. Explain this: CheckBox checkbox = (CheckBox)sender;

    Sep 23, 2010 · 1 The sender parameter (which is declared as plain Object) is cast to CheckBox as you apparently know that the sender of that event always is a CheckBox.

  4. How can I get the sender email address using Outlook.MailItem in …

    Jun 23, 2014 · 0 In C# you can access the sender's email address using the property of the Outlook MailItem. It returns a string object. VB.net should be similar.

  5. .net - C# What is the "object sender" of Form? - Stack Overflow

    I want to make If "sender" is from Button print: Hello From Button and if "sender" is from Form print: Hello World. I know we can do it it if else but what is the name of form?

  6. MailMessage, difference between Sender and From properties

    Apr 19, 2010 · What's the difference between the Sender and the From properties in the MailMessage class? Are they both the same, and if not is there a reason to use Sender …

  7. vba - Get sender email address - Stack Overflow

    Nov 14, 2013 · strSenderName = Sender.GetExchangeUser().PrimarySmtpAddress the sender name comes up as "empty". How I can extract the sender's email address?

  8. Understanding C# Events use of sender object - Stack Overflow

    Jan 6, 2012 · The thing i'm having a bit of trouble understanding is the use of the sender object. What I would like to use it for is to pass a handle to a class object I have with various …

  9. How to use "Sender" parameter with "As" operator for more then …

    Jul 5, 2012 · It's very good, but the example at the question covers just the text/caption problem, but the big picture is to use the Sender for more than just that. There are lots of methods and …

  10. c# - MAUI: How to bind Event Properties (sender, EventArgs) in …

    Jan 5, 2024 · MAUI: How to bind Event Properties (sender, EventArgs) in code; binding to ViewModel or Code Behind Asked 2 years ago Modified 1 year, 11 months ago Viewed 1k times