sender is the conventional name of an input parameter to an event handler in some object-oriented languages and their frameworks, for example Objective C and Cocoa, or C# and .NET.

learn more… | top users | synonyms

0
votes
3answers
32 views

Sent message or received message?

1) As I known, [self setDate:...] mean self is receiver and setDate: is message. So which is the sender ? 2) I set a button with action (IBAction)buttonPressed:(id)sender. I understood that this ...
0
votes
1answer
31 views

Updating row directly in ASP.NET using databind() ! Please help me

This is a difficult problem so I found how to solve when cell on table don't receive input value from user . Please show me how retrieve value from updated cell . Please help me . I am very boring ...
0
votes
2answers
79 views

Getting the value from a dynamic NumericUpDown by Sender c#

I've ran into quite an annoying problem. I've got these global variables (for keeping the name etc) List<object> NumeriekVakken = new List<object>(); List<decimal> ...
0
votes
2answers
42 views

object sender listviewitem .text property

I am trying to access listviewitem selectitem text property via object sender. how do I do this? private void button1_Click(object sender, EventArgs e) { ListViewItem LS = new ...
1
vote
2answers
34 views

Get GridView Object from Sender

I have multiple GridView on a page, and they are all pagable. I need to handle the paging in OnPageIndexChanging event, but I'd rather not write the same code for each GridView. So how can I get the ...
0
votes
1answer
31 views

I have a repeater and a dropdownlist inside this repeater

I am populating dropdownlist inside a repeater (DropDownList is filled with values from database) protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e) { try ...
0
votes
1answer
41 views

Java: single class to send AND receive

I'm writing a Selective Repeat program with the specification: "Implement the sender and the receiver entities in the same class (SRNode) without any loss of generality. Each process of SRNode can ...
0
votes
0answers
21 views

Passing a variable from aspx to .cs

I am trying to pass an Id from aspx to .cs. This is the code i have in the aspx: <asp:Button ID="btnAddAsFriend" runat="server" Text="Add as Friend" onclick="btnAddAsFriend_Click" CommandName = ...
1
vote
3answers
88 views

OBJ C - How to get the textfield name from a sender

I have several textfields, each with tags, that I want to individually add to an array. I need to figure out which field it is coming from before I add it. I would like to use the same method for ...
0
votes
3answers
92 views

Passing parameters on button action:@selector from UITableviewCell by tapping on UIButton

I have a problem. I am trying to pass parameter after clicking on button that is subview of UITableViewCell, Here is my source code: - (UITableViewCell *)tableView:(UITableView *)_tableView ...
1
vote
1answer
73 views

akka (java) sender() method behaves strangely

Any known cases where TypedActor.getContext().sender() does not behave as expected? I know that in fire-and-forget mode, it defaults to deadLetters, however I am running into something different: // ...
1
vote
2answers
71 views

Closing form and capture closing event

everyone. I've run into such a problem. In my app, I show second form from my main form through ShowDialog method. In this form I have some textBox(s) to connect to the DB and a Connect button. If ...
0
votes
2answers
45 views

mail() php : without sender works, with sender doesn't works

I have a contact form, with mail() function. For a long time it worked correctly. Suddenly now it doesn't work. I have checked, but all is correct. But if I delete the sender parameter, it works, with ...
0
votes
1answer
90 views

Pear PHP Mailer Emails Sender and Recipient

I'm using Pear PHP Mailer to send an email through SMTP to a number of recipients, but for each one, it sends an additional email to the sender's email address as well. This is my code: Any help is ...
2
votes
1answer
21 views

Access Siblings by Sender

I have two tabs in a tab control which basically have the same controls. Here's an example in which both tabs have in common: GroupBox DataGridView Button1 Button2 On my click event of Button2 I ...
2
votes
5answers
104 views

self IBAction and sender

I am a newbie iOS programmer, here is my question: I have mapview and segmented control, also changeMapType function which get called when UIControlEventValueChanged occures, like this // change map ...
1
vote
1answer
131 views

how to tell akka actor sends message to other actor's mailbox successfully? [closed]

here is the scenario in my mission critical application: Actor A does some resource intense work, then sends a message to actor B on another physical unix box. B is accessing external network elements ...
1
vote
1answer
108 views

Can't get envelope sender to set correctly, email goes to spam in gmail

I'm really stuck. The emails I'm generating have the nobody apache address set for the envelope sender. Here's my PHP code: $to = $emailresult; include 'inc/msg/resetpassword.php'; ...
0
votes
4answers
104 views

Check which UIButton was Clicked from another function

In my xib I have taken 4 UIbuttons named button 1, 2, 3 and 4. These four buttons are connected two four different IBAction methods which perform different functions. Now I have one more button ...
0
votes
2answers
49 views

php message sender with delay

This code extract user ids from my database and send them a message. The issue is that is trying to send the message to all users at the same time and my db goes down. I get error if I send it on to ...
-1
votes
1answer
88 views

Sender ID Now spf1 Instead of spf2? [closed]

If I use Microsoft's Sender ID wizard here: http://www.microsoft.com/mscorp/safety/content/technologies/senderid/wizard/ The result starts with v=spf1. Doesn't a Sender ID need to start with spf2.0? ...
0
votes
0answers
128 views

Send receive packets via Wifi without established wireless network

Is there any option to send and receive packets via wifi, but without established connection. I want to write app which will listen ether, and sends packets (into ether) if if it's needed. Naturally, ...
1
vote
1answer
84 views

Explanation on Email Sending Program

I am relatively new to Android programming, but have had experience in Java and other coding languages. As part of a program that I am currently making, I want to be able to send a pre-defined email ...
0
votes
2answers
104 views

C# finding sender

private void buttonCheck(object sender, EventArgs e) { Type x = sender.GetType(); var y = Activator.CreateInstance(x); //sends me back to the original problem : sender is an object, not a usable ...
0
votes
2answers
841 views

sending/receiving file UDP in python

I've made this sending / receiving scripts but i corrupted file ! i have no idea why I'm getting this issue ! sender.py #!/usr/bin/env python from socket import * import sys s = ...
0
votes
1answer
80 views

sub event to interact with more than one control

I want to call this snippet passing a "controlname" like a argument, then the sub interacts with the desired control How I can do that? This is the snippet: #Region " Move a control in real-time " ...
0
votes
0answers
24 views

How can i stop all playing sounds in finch?

Is there a way I can stop all sounds that are being played with finch in a single statement. Lets say I have 31 different buttons that play different sounds. If I'm playing lets say 5 sounds at the ...
0
votes
1answer
346 views

How to get object from sender parameter in C# in Windows-Phone-7

I want to get source of my image control by clicking the image in my wp7 application I try this one but not get solution. Image img = new Image(); img.Source = new BitmapImage(uri); img.Height = ...
2
votes
2answers
71 views

how to tell which panel fired the click event

i have an array of panel controls that are placed in various place programatically in my form. Below you can see that as I loop through and increase I, all the panels are registered with the same ...
0
votes
1answer
128 views

Xcode: Get name from UIButton name

I would like get the integer from the name of a UIButton. The UIButton's name is "Button11", and I would like my integer therefore like to be 11. Can anybody please tell me how to do that? I ...
-3
votes
1answer
52 views

Email sender- recipient code error [closed]

Hi I have my project in 4 days and I got code from http://www.youtube.com/watch?feature=player_embedded&v=mGDnQchFZJg#! , I could really use help, thanks in advance. jet it gives me an error in ...
5
votes
1answer
161 views

Delphi 7:Attach Image to Mouse

I want a derivate of TImage follow the Cursor when it has been clicked and stop following when it gets clicked again. For this, I created a pointer, named 'Attached', that points to a TImage or a ...
3
votes
1answer
108 views

Method to determine id of sender

I have code that works but I want to make sure I am doing things properly and cleanly. I have four versions of the same collection of views displayed on a screen. Each collection which will be used ...
0
votes
0answers
72 views

Use selected item from listbox to chose item in second observalbe collection and send to new page

I need to use a listbox selected item to filter and chose an item in a second observablecollection and then to send this item as the data context of a new page. Both observable collections share a ...
2
votes
2answers
1k views

VB.NET What is Sender used for?

I'm confused as to the purpose of the sender parameter in Winform controls, for example: Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load End Sub I ...
0
votes
1answer
57 views

How can I refer to different objects by the [sender tag]?

I want to show different set of strings with different calculation depends on the sender's response..2 sets of strings are parallel, which means the naming is like.. user1, user2, object1, object2, ...
0
votes
2answers
822 views

ToolStripMenuItem_Click(object sender, EventArgs e) - casting back to a DataGridView

I have a WINFORM app with a DataGridView control , hooked into a ContextMenuStrip control. The ContextMenuStrip fires events to essentially perform copy / paste between the DataGridView and the ...
-3
votes
3answers
231 views

Setting the email correctly in a contact form

Considering that my experience with PHP is limited, I used a contact form generator that works almost as I want it. The form, and all of its variables function properly, however upon receiving the ...
1
vote
7answers
849 views

How to use “Sender” parameter with “As” operator for more then one class at a time?

In Delphi, sometimes we need to do this... function TForm1.EDIT_Click(Sender: TObject); begin (Sender As TEdit).Text := ''; end; ...but sometimes we need to repeat the function with other object ...
0
votes
3answers
389 views

multiple signals for one slot

For my GUI i would like to have two pairs of buttons that scroll up and down a scrollarea. The first set of buttons should work on say scrollarea1 and the second set of buttons should work on a ...
-1
votes
2answers
629 views

how to get the email adress of the sender

I need to generate a report on the list of messages and the sender of a letter, I can extract the theme of letters, but not understanding how to get the sender's address for each letter, the report ...
0
votes
2answers
1k views

Adding buttons on tableview - can't access the sender

I have used the following code to add buttons to my tableviewcell , when the button is pressed i need to know which row was it. so i have tagged the buttons (playButton viewWithTag:indexPath.row) The ...
0
votes
1answer
83 views

objective-c - re set sender tag after deleting

Is there a way to re set a sender tag like NSMutableArray does when you deleting an item ? My tag looks like : 1, 2, 3, 4... 20. When I'm deleting a view I want to retrieve the right order and not 1, ...
1
vote
0answers
222 views

android sms sender name returns null

Greetings. I am trying to read the sms sender name using the following code. The variable name is always null. Please let me know what is the problem with code. It returns address properly But the ...
1
vote
6answers
264 views

“(ListView)sender” versus “sender as ListView” [duplicate]

Possible Duplicate: C# “as” cast vs classic cast What is the difference between these two expressions? (ListView)sender sender as ListView In General, I usually used the exp ...
3
votes
1answer
499 views

How to identify which button is clicked in Objective-C?

I am a new iPad developer. I have created UIButton programmatically, in which I want to identify user has clicked on which button and according to that I want to do some action. How should I ...
1
vote
1answer
171 views

How to get enclosing element of a ContextMenu, using sender

I have a contextmenu that's located inside a grid. In the contextmenu's closed-event I need to get hold of the encapsulating grid. I'm aware that I can, in the newest silverlight toolkit, use: var cm ...
0
votes
1answer
557 views

C++ - Mail Sender

I would like to create a mail sender on C++ (not Mail Client for eg. GMail). In this mailer I want to be able to change the headers also. I have already downloaded and installed the POCO libraries, ...
0
votes
1answer
391 views

Get index of NSMenuItem (sender) in parent menu

I'm having a NSMenu (application dock menu) and several items in it with the same action. How can I figure out the index of the sender item (the one triggering the action) within its container menu? ...
1
vote
3answers
2k views

PHP mail sends but sender is always “Apache <apache@hosting12”

In my mail client or gmail the sender is always apache@hosting12 Any way to fix this issue? I have tried setting the headers like these with no success. Can sombody please help me? $headers = ...

1 2 3