button

C# - Adding an Event Handler for all instances of a class.

I have to add an unknown number of buttons to a form in WPF (It's actually a toolbox whose element are loaded dynamically). I'm looking for a way to make one event handler for all of these instances. Is this possible? And they're not exactly just buttons, It's a class that inherits the Button class and has some other member variables. Wi...

iPhone: is there a way to close an iAd bar?

I'm trying to add iAd to my app right now. I have it instantiated in my appDelegate, and would like to have a close button to allow the user to close Ad at any time. How should I go about doing this? ...

Button with background, no cursor

I'm trying to customize my buttons in my view a bit and give them my own look. Whenever I set a picture as a background so that the button looks different though, I seem to lose my cursor. I can use my trackball to go through the items still but when I come to one of my custom buttons the cursor does not show. I have the same problem wit...

Inactive button in UIAlert View

In my iphone-app, I have a "Share" button in my Navigation bar, that pops up a UIAlertView with the options "Twitter" and "Facebook". When a user has already sent something to Twitter, I don't want him to be able to sent it again. One way of preventing this, is to just remove the Twitter button from that Alert. This makes the Alert kind ...

Android Development: Switching Between Views Without Loosing onClickListeners

Hello, On my application I'm developing, the main.xml layout (the default layout of my app) has a few buttons that have been assigned onClickListeners (not the implementation way). One of those buttons I want to have the ability to take you to another view. On the other view (preview.xml), there's another button that takes you back to ...

form variable + submit button not concatenating with php

UPDATED: Examples added at end as requested: Got a seemingly unique problem with concatenating form variables + the name of the button used to submit. This works: $word="number"; $number=1; myalbum=$word.$number; echoing $myalbum gives "number1". No surprises there. BUT if I POST the form to a php script with the intention of writin...

Animating the UIButton Layer?

Hi Im trying to bring the ripple effect seen in the dashboard application to iphone. My idea is whenever i place a button in the layout view there should be ripple effect around the button. however Im able to bring the ripple effect for the whole view but I needs the effect only around the button. I tried the following code. I don know...

Grid of 30 x 30 buttons

I'm making a grid of 30 x 30 buttons with BS_BITMAP representing some numeric value which can be set by clicking on buttons. so should I go creating 900 buttons on a window and or GDI would help to do something same? Any ideas on setting a row of some column in a grid to some values? would I need a multidimensional array of window handl...

JQuery conflict with radio buttons

I have some radio buttons with default checked attributes but they show up as being unchecked. However using Firebug, I can see that they are in fact checked. When I remove the JQuery library from the page, the buttons work fine. Yes<input type="radio" value="1" name="Contact0_AmericanExpress" style="width: 20px;" id="amex"> No<input ty...

How to Add an event to a list of button at runtime

Hi I am trying to create buttons at runtime. My Question is that How should I add an Event to each of the buttons at runtime mode also? For example: Button btn; int i =0; int j =0; List<Button> listBTN = new List<Button>(); private void button1_Click(object sender, EventArgs e) { btn = new Button(); btn.Location =...

adding selfmade button to c# vs2008

hi,how can i add my selfmade button into toolbox in vs2008?thanks ...

Back button not working

Hello, When i start an activity which has android:theme="@android:style/Theme.Dialog" in the AndroidManifest.xml file the back button works as intended, i.e. returns to the activity that started it. However if i remove the theme attribute (which is what i want in the end) then the back button has no effect. Could it have something to do...

addMouseListener or addActionListener or JButton?

When defining the behaviour of a simple click on a JButton, which is the right way to do it? And, what's the difference? JButton but = new JButton(); but.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { System.out.println("You clicked the button, using an ActionListener"); ...

Mark-up Button Event Not Firing in ASP.NET (Details inside)

There is nothing fancy with the mark-up: <hr /> Add... <asp:Button ID="buttonTextSegment" runat="server" Text="Text Segment" onclick="buttonTextSegment_Click" /> <hr /> Or the code: protected void buttonTextSegment_Click(object sender, EventArgs e) { //never is triggered } My guess is that it is due to the hierarchy/load or...

Button Center CSS

Hi There, Usual CSS centering issue, just not working for me, the problem is that I don't know the finished width px I have a div for the entire nav and then each button inside, they dont center anymore when there is more than one button. :( CSS .nav{ margin-top:167px; width:1024px; height:34px; } .nav_button{ height...

How to hide button in last("fake") row of Datagridview?

In my dgv I have a DataGridViewButtonColumn which adds a "delete row" button to each row. However, a button also gets created for the "fake" row at the bottom of the dgv, which makes no sense in this context because that row does not correspond to a record yet. What is a good way to hide that button, or at least paint over it? I came ac...

Tweet Button - hiding zero count

I'm interested in adding to some of my sites the official Tweet button which Twitter have recently released. For those unaware, the tweet button is a simple bit of JS which you can drop in to a page and it allows your users to easily tweet about the page in question, much like the facebok "share" button. There are 3 different styles ...

using autopostback on dropdownlist that also has submit button

Have a dropdown list with autopostback set to 'yes' have another dropdown list box that will be populated based on the selection of the first dropdown. It works fine until I put a submit botton on the form. When I do it appears to not do the auto postback until the submit button is pushed. Can you have a submit button on a form that h...

is it better/faster to paint an image as the background of a button or use the Java2D to paint it

Say I have a button and want to change the background button to a gradient, is it better/faster to draw a gradient using Java2D or just get an image with that gradient and put it in the background of the button? ...

android button fine text alignment

I'm trying to create standard button in android with a background and some text in front but some fairly specific alignment. I want the text to be centered vertically and on the left with 20dp of padding. The alignment works but the padding doesn't. I know I could probably get the desired effect by putting a few spaces in the text but th...