Tagged Questions
The sender tag has no wiki summary.
7
votes
4answers
591 views
PyQt4,How to add a batch of widget (QPushButton) at one time and lets them to execute on SLOT
if i want to add 10 QPushButton at one time:
NumCount=20
for i in range(NumCount):
btn=QPushButton("%s %s" %("Button" i+1),self)
btn.clicked.connect(self.btnclick)
def btnclick(self):
# here ...
5
votes
5answers
3k views
Objective C: what is a “(id) sender”?
In some IBAction I saw:
- (IBAction)pushButton:(id)sender;
This (id)sender when do I use it?
4
votes
2answers
181 views
RoutedEventArgs.Source vs Sender
What is the difference of sender vs source in wpf event handling, I googled it but didn't find any useful answer. Like if I had an ellipse in a canvas, and I click on the ellipse, the ellipse would be ...
3
votes
3answers
159 views
How can I optimize this code by using SENDER?
I have a form that contains 16 TCheckBox and 32 TEditBox.
Every 2 TEditBox en-ability is depending of the checkBox state.
so I uses this code which is too long:
//T1
procedure ...
3
votes
1answer
145 views
Who called my DBus API in Linux system
The scenario is like this:
In a Linux based handheld device I have a C app which has dbus APIs ready to be called by 3rd party apps. The DBus APIs are called during booting time.
Is there any system ...
3
votes
1answer
152 views
Passing one object to many classes using Java
I need to pass an object from one class to many different classes.
The aim of this is to create one method that broadcasts the object to any other classes that are listening. This is so that more ...
2
votes
1answer
229 views
Get Safe sender list in Outlook 2007 C# Add in
I have created an Outlook 2007 add-in in C#.NET 4.0.
I want to read the safe sender list in my C# code.
if (oBoxItem is Outlook.MailItem)
{
Outlook.MailItem miEmail = ...
2
votes
2answers
249 views
Sending email from Android app
I am trying to a develop an android app that sends email using JavaMail. I have tried the code bellow as console application and it works, but when I use in as an android app from the emulator it ...
2
votes
1answer
751 views
JavaMail API, Gmail-Auth and setFrom
for this app i'm following this example:
http://pipoltek.blogspot.com/2008/02/sending-mail-using-gmail-smtp-server.html
I can send emails, it looks good.....but i want to modify the sender email ...
1
vote
1answer
102 views
Sending an email from a specific account using Outlook and Delphi
I need to be able to use a specific sender address when I send emails from Delphi using Outlook automation.
I have the code running now, but it uses the default account in Outlook and I need to be ...
1
vote
1answer
65 views
Get sender (button) from child window
I was generate the button through code. and with the button i got one method to call up the child window in silverlight.
private void btnXX_Click(object sender, RoutedEventArgs e)
{
...
1
vote
2answers
110 views
Best method to determine the sender of an event
I have a simple question about event handling in iOS applications... suppose you have an app with some buttons that react to the TouchUpInside event calling the same action, what is the best way ...
1
vote
2answers
218 views
UIButton TouchUpInside Touch Location
So I have a large UIButton, it is a UIButtonTypeCustom, and the button target is called for UIControlEventTouchUpInside. My question is how can I determine where in the UIButton the touch occured. I ...
1
vote
3answers
67 views
EventHandlers and the sender
So in my program i created a struct with a button and a number value... like this
struct box
{
public int numberValue;
public Button button;
}
I then made a 2D array of this ...
1
vote
2answers
221 views
How to get button.tag via longPressGestureRecognizer?
I'm dynamically adding image buttons to some scrollview. They all point at one longPressHandler. Now, how do I get which button was pressed? The [sender tag] gives me the tag of longGestureRecognizer ...
1
vote
3answers
200 views
sending and receiving on the same socket
I am implementing in C on Windows : A channel of communication between a sender and a receiver.
The channel has to receive packages from sender, transfer them to the receiver and then back from ...
1
vote
0answers
122 views
Access another methods sender
So I'm pretty new to Objective-C and kind of just learning as I go here. So I have a method that passes on its sender when called to another method. So when called internally I can call it like this:
...
1
vote
1answer
104 views
Sending Email via ActionMailer::Base using SMTP, but sender should be another email-adress
i'm searching for a way to send emails with ruby on rails via actionMailer. The difficulty is, that i am sending the emails via gmail smtp. But i have to send them from different email-adresses (the ...
1
vote
3answers
1k views
Actionscript 3.0 Determining Event Listener Sender?
is it possible to determining what object calls a function based on an event listener? for example, i have 2 buttons on stage that call the same function when they are clicked. i'd like the function ...
1
vote
0answers
235 views
Outlook 2007 / 2010 custom view email address
Is there way to display custom column in inbox with senders e - mail? Or better use From name from contacts if it is found on the basis of senders e - mail?
Cause sometime sender has so dummy name in ...
0
votes
3answers
36 views
iOS - passing Sender (button) name to addSubview
I have a main view with 3 buttons. Clicking on any of the buttons adds a SubView.
The buttons have different titles and are all linked to IBAction "switchView"
The "switchView" code is below.
- ...
0
votes
1answer
26 views
To get which object requested this window to show
I want to create a window which shows a graphic.
There are 4 menu items within a menustrip. When clicking on the menu item the DetailsGraph window will be appear. But in this form I want to get the ...
0
votes
1answer
57 views
Cakephp 1.3 email component won't send using a “from” or “sender” that i want it to! (on ubuntu 10.04!)
I can send an email via cakephp 1.3. What I cannot seem to do is change the "from" portion - so!
Given:
$this->Email->from = "no-reply@someurl.com";
//OR
$this->Email->from = ...
0
votes
2answers
32 views
Weird situation trying to pushView with an object
So, here's the deal.
I have 16 buttons in my xib, each is instanced in its controller with the following code:
IBOutlet UIButton *left1;
IBOutlet UIButton *left2;
IBOutlet UIButton *left3;
IBOutlet ...
0
votes
1answer
44 views
ROR : send email using different mail id at different time?
I m new at ROR, so it may be a silly ques.
I'm using ActionMailer to send a mail to any reciepient.
Initially i have tried it using gmail smtp setting.
But in that everytime the mail is sent, it is ...
0
votes
1answer
144 views
How to pass sender tag in DetailView to get default Map application for direction?
I am opening the Detailview on annotation pin as well as on tableview. To get direction from detailview I have place following button click event.
Edited:: with -(IBAction)showDirectionUpdated; ...
0
votes
2answers
43 views
How to typecast Sender?
I have a ToolStripButton as a sender within a click event. I need to be able to typecast the sender as a Toolstripbutton and retrieve its tag property as an integer. I think, I am doing that in the ...
0
votes
1answer
65 views
after inputAccessoryView tapped
I have tried the solutions at UITextView doesn't show InputAccessoryView on first click
I'm having a with a problem with a textView who has a inputAccessoryView
I want to call [textView ...
0
votes
1answer
66 views
favorites button in the tableviewcells
I implemented the following method in my tableviewcontroller for showing favorites with empty star and filled star:
-(IBAction) tapped:(UIButton *)sender
{
if([sender isSelected])
{
...
0
votes
1answer
140 views
Referencing a button when the action's sender is a UIGestureRecognizer
I've got a button called myButton and I gave it a UIGestureRecognizer so that an IBAction is only run when myButton is pressed with two fingers:
UIGestureRecognizer *tapper = ...
0
votes
2answers
396 views
iOS: Control two CheckBoxes
I have this code to control two check boxes (buttons customized):
- (IBAction) setCheckBox: (id) sender{
UIImage *selected = [UIImage imageNamed:@"checkbox_checked.png"];
UIImage ...
0
votes
0answers
47 views
How reliable is SpamAssassin in determining whether an email sender is spoofed?
I'm making a Rails app that accepts input through email, and I want to differentiate between email sent from a user's own email address and an email sent from an attacker with the sender spoofed. How ...
0
votes
3answers
157 views
Little problem with - (IBAction) doSomthing: (UIButton *) sender;
I'm trying to change the title of a button when the user press on it with the following code:
- (IBAction) hideKB: (UIButton *) sender {
sender.titleLabel.text = @"↓";
}
But when I click the ...
0
votes
2answers
70 views
How to tell the upcomming viewController by which button he was called
I have a viewController, lets say blaVC, which calls another view controller blubbVC through a button press. As there are 4 buttons, all calling blubbVC with the same nib, but the content should vary ...
0
votes
1answer
383 views
C# ews sender address
I am trying to get specific information about an email (messageID, mailboxname, date, from, to, subject, body, seq, date_inserted_db, hasattachment) and I can successfully get them using either the ...
0
votes
1answer
776 views
Post notification with sender and object
I cannot seem to find out how to post a notification with an object and a sender.
I can post a notification with a name, sender and user info. See:
- (void)postNotificationName:(NSString ...
0
votes
1answer
261 views
Object sender to control sender?
Is there a way for me to change object sender into, say, control sender? What I want in the end is for object sender to tell me the controller count (controller 15, for instance), rather then it tell ...
0
votes
3answers
184 views
How to check for “method group” via “sender” object?
Imagine a method like this ( in Win Forms):
//First method
private void buttonStart_Click(object sender, EventArgs e)
{
//I call another method here
this.GetData(sender, null)
}
...
0
votes
1answer
244 views
Sending email from Android app
I am trying to a develop an android app that sends email using JavaMail. I have tried the code bellow as console application and it works, but when I use in as an android app from the emulator it ...
0
votes
1answer
506 views
how to use Boost.asio for the multicast sender?
I'm trying to use boost.asio to implement a multicast sender. I have a my thread implementation and I need my boost.asio only for management of the socket.
I looked at the example on the site of ...
0
votes
2answers
912 views
iOS attaching callbacks and associating different sender possible?
Suppose I have a button that I am adding to an annotation object in a mapview:
AnnotationButton* rightButton = [AnnotationButton buttonWithType:UIButtonTypeDetailDisclosure];
...
0
votes
4answers
862 views
(id)sender iPhone Explanation
Hey guys,
can anyone explain me what (id)sender exactly means? I have seen it in so many actions and I don't know how to set this sender id.
- (IBAction)publishStream:(id)sender {
// do something
...
0
votes
3answers
419 views
how to get parent name of a context menu item?
I'm trying to get the parent name of a context menu item.
So I tried something like this on menuItem_click :
Button clikance = (Button)sender;
string ladyGaga = Convert.ToString(clikance.Content);
...
0
votes
5answers
1k views
accessing UIButton by (id)sender
I have the following code
-(IBAction)ATapped:(id)sender{
//want some way to hide the button which is tapped
self.hidden = YES;
}
Which is linked to multiple buttons. I want to hide the button which ...
0
votes
1answer
116 views
Property 'CommandArgument' is WriteOnly
I have the following line in my code, inside the click event handler of an ImageButton:
Protected Sub FinaliseBtn_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles FinaliseBtn.Click, ...
0
votes
2answers
656 views
How to get the sender's name of an NSButton
I have several NSButtons that are attached to a single IBAction. I need to differentiate inside the method between the different buttons. I tried the following, but it doesn't work:
for (int i = 0; ...
0
votes
1answer
163 views
Can I set the Sender ID For CDMA SMS
Is it possible to set the Sender ID alphanumerically to a CDMA device, 'cos I tried, but anytime I use anything other than numerics, the message does not arrive.
0
votes
1answer
584 views
How to identify sender's ip address of a udp packet received on iOS device?
How to find out the sender's ip address of a udp packet that was received on a device running iOS 3.2 or higher?
For example, if using Python on a computer, I'd use SocketServer.UDPServer which takes ...
0
votes
1answer
74 views
Identifying an object name by appending a generic name with a changeable value. Is this possible?
Say I have 5 UIImageViews, named
image1
image2
image3
image4
and image5.
And I have 5 buttons, which have their tag values set to the corresponding images that overlay them, so 1 - 5.
If button 1 ...
0
votes
2answers
404 views
Cocoa performClick: in awakeFromNib not working
Im trying to call performClick: from awakeFromNib and its not working. I think its because it needs a sender and awakeFromNib has no sender. I have tried using nil,self and sender as the sender of ...