button

Does UIAlertView really show table view if too many buttons?

I've seen a number of blogs claim that UIAlertView from firmware 3.0 onwards will show a table view if too many buttons are added to it to fit in the alert box. However, I don't seem to find this the case, either in the simulator or on the device. Before I look at using one of the mechanisms for manually adding a tableview to an alert,...

Simulating a mouse button click in Windows

Hi everyone, I'm writing Remote Desktop clone in C++ using QT. So far I'm able to move the mouse cursor around fine. QT has a nice setPos function for that. However, I'm a bit lost as to what API/Library to use for simulating mouse button clicks. One method I'm aware of is to send the WM_(event) to a window using the window's HWND. How...

Eclipse behaves strangely on Ubuntu 9.10. My buttons won't work after the upgrade!

Everything was fine until I did an upgrade from Ubuntu 9.04 to 9.10. Since then, Eclipse just doesn't respond properly. The following are the symptoms I can see: When I click on update, it grabs the available updates but doesn't show them. Any internal window that is displayed has corrupted buttons I cannot click on any of the buttons...

Opacity of Buttons/TextBoxes - VB.NET

Hey everyone, Is it possible for me to set the opacity of a button or textbox? I know that you can set the opacity for a form, but I'm not so sure about a button or textbox. Thanks ...

Animate the enabling of a UIBarButtonItem?

Is there a way to animate enabling or disabling a button? I've tried the following with no success. I'm guessing at this point that the enabled property cannot be animated like opacity can – but I hope I'm wrong. [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:1.0f]; theButton.enabled = YES; [UIView setAnimati...

How to get the radiobutton for corresponding datalisty item?

I want to convert this code to JavaScript code: rdb1 = (RadioButton)DataList1.Items[i].FindControl("rdb1"); How can it be done? ...

Where is Button.DialogResult in WPF?

In System.Windows.Forms.Button there is a property DialogResult, where is this property in the System.Windows.Controls.Button (WPF)? ...

Is there anything wrong with having a button as a child element of an anchor?

I quickly tested this in Firefox, and it seems to work <a href="somewhere"><button>Go</button></a> The Validator didn't choke on it, but is it a reliable way to make a button a link? ...

Text in disabled and css styled button shows movement in IE

Hi. It's pretty much what the title says. I have disabled and css styled buttons. In Firefox, disabled buttons do not move at all when pressed (which is what is expected), in IE, the text in the buttons still moves a few pixels. Anyone know why this happens and more importantly, how to make disabled styled buttons actually disabled in ...

How do disable a SimpleButton including changing it's appearance

Here is the premise: I have 10 buttons each with on normal state image (buttonX.png) and a mouseover state (buttonXglow.png). The buttons are created manually in flash, but referenced in my as3 main class. I need to add different states to the buttons. I want do the following: mark on of the buttons as selected, e.g. show it with the...

C# Button Click

I have the following button on a .aspx page: <asp:Button runat="server" ID="bntLogin" OnClick="bntLogin_Click" Text="Login" /> With the following in the .aspx.cs: protected void bntLogin_Click(object sender, EventArgs e) { // } When I try to build it I get the following error: 'ASP.reserve_aspx' does not...

C# Button Text Condition.

Using a WinApp form in c#, and many buttons here... I want to create a condition, that if a button has text in it, then the background color of that button changes. That sounds easy enough to do. But what I have is a common set of buttons, that have text in them dependant of values in a XML document. Example: Week 1 - Buttons 1, 3 an...

C# Building An Array with Button Entries.

I have a set of buttons that I want to add into an array so that they are ordered. The buttons I have are: Monday0700Button Monday0730Button Monday0800Button Monday0830Button and so on. How do I add a button into an array, and have them ordered, so that I can use this order later on for different uses. Thanks. ...

How can i add a button to my form

I'm confused.Can't find any button control to add to a form in my mobile application. Its a standard mobile application with mobile emulator 6.0. how can i add a button? ...

Make Submit button not kill my dialog box

okay .. nooob alert.. sorry I have a form and Im trying to perform ajax posts. With the default submit button the dialog window closes, with the jquery button, nothing happens. I want the dialog window to stay open so I can keep doing ajax requests uninterrupted and only close when I press esc or click the big "X". Thanks <div id="...

ASP.NET dynamic Command Button event not firing

I'm trying to create Command Buttons dynamically, but clicking the button in question doesn't seem to raise the corresponding CommandButton_Click event. I noticed that in the examples on SO a property is set for Button.OnCommand as well as the CommandName and CommandArgument but it isn't an option in intellisense. So the question is, wh...

Why does the function on my button not work?

I am writing a form to get data from boxes and do a calculation when the "Calculate" button is clicked. The button does the calculation through the function cal(), but it cannot display the result in the countfield box. How the display the result in the box? Also, how the name the function with "-"? <script type="text/javascript"> func...

Best way to create button displaying selected color

You know those color picker buttons with a little rectangle in it, displaying the currently selected color? Like in MS Office products. I would like to implement one using C# / .NET. So I've got a nice little icon with a magenta-colored rectangle (which is to display the color) and a transparent background. I can think of two ways how ...

WPF: filling the "gap" in a StackPanel of buttons when removing one of the buttons

I am defining a StackPanel containing multiple Buttons in my xaml file. I'd like to be able to remove buttons based on some events, and have the "gap" where that button was be filled by having the following Buttons move up on the screen. I used: buttonName.Visibility = System.Windows.Visibility.Hidden; but that just hides the button an...

Javascript - How to program a click counter?

I have tried before, but it doesn't work. Is it any wrongs of the code? <script type ="text/javascript"> function count() { var x = 0; x += 1; document.getElementById( "counting" ).value = x; } </script> </head> <body> <input type ="button" value = "Click" onclick = "count()"/><br><br> <input id = "counting" type = "text" /> </body> ...