9
votes
4answers
2k views
<button> vs. <input type=”button” />. Which to use?
When looking at most sites (including SO), most of them use:
<input type="button" />
instead of:
<button></button>
What are the main differences between the two, if any?
Are …
7
votes
5answers
165 views
When to add “…” to the end of buttons?
I've noticed that many Microsoft applications will name some buttons with "..." at the end. These buttons always seem to open up a new dialog. There are some buttons, however, that don't have "...", …
7
votes
8answers
314 views
Is it ok not to have a button for a search box?
I was wondering if it was ever ok not to have a submit button (Ok, Go or Search for example) near a search box in Web pages.
I know that hitting enter is much faster and that it will perform the …
6
votes
3answers
348 views
WPF — it’s gotta be easier than I’m making it
I'm having the darndest time figuring this out: say I've got two Button and three TextBlocks. I want either button to trigger a simple Storyboard on ALL TextBlocks. Currently I'm trying to define a …
6
votes
12answers
892 views
Programatically press a button on another application (C, Windows)
I'm trying to use the following code to press a button on my other application:
HWND ButtonHandle;
if( (wnd = FindWindow(0, "Do you want to save?")) )
{
ButtonHandle = FindWindowEx(wnd, 0, …
6
votes
13answers
799 views
Is there use for the Scroll Lock button anymore?
The scroll lock button seems to be a reminder of the good old green terminal days. Does anyone still use it? Should the 101 button keyboard become the 100 button keyboard?
5
votes
4answers
472 views
How to press the Windows button programmatically using C# SendKeys
Hi,
Basically I want to simulate in code a user clicking on the windows button. I know there is SendKeys which allows me to send key presses to windows if I get a handle to them, but what I can't …
4
votes
8answers
138 views
What disadvantages are there to the “button” tag?
I started using a diagnostic css stylesheet, e.g.
http://snipplr.com/view/6770/css-diagnostics--highlight-deprecated-html-with-css--more/
One of the suggested rules highlights input tags with the …
4
votes
1answer
57 views
In emacs how does the “hyperlink” in the *Help* buffer work?
I'm trying to figure out how the "hyperlink" works in the *Help* buffer (so that I can implement something similar in the output of M-x compile). Here is a more detailed description of the behaviour I …
4
votes
3answers
2k views
How to close/hide the Android Soft Keyboard?
Im having an EditText and a Button in my layout. After writing inside the edit field and click on the Button, i want to hide the virtual keyboard. I guess there should be a simple, one or two liner to …
4
votes
6answers
516 views
How do I add code to the exit button in a c# form?
I'm using Microsoft Visual C# 2008 Express.
In my main form, there's that X button to close the form at the top right. How do I add code to this button? In my menu, I have an "Exit" item and it has …
4
votes
4answers
324 views
[WinAPI] How to change the order of buttons on the taskbar?
There are a few freeware tools out there (e.g., Taskbar Shuffle, XNeat, etc.) which have the ability to change the order of the buttons on the taskbar, without actually closing or opening any windows. …
4
votes
9answers
497 views
Best way to deal with users double-clicking buttons in a winforms app?
I'm working on a WinForms app and I have a user control in it. The buttons in the user control raise events up to the form to be handled by other code. One of the buttons starts some processses that …
3
votes
2answers
129 views
Choose button while pressing enter button
I have a submit button and back button in my asp.net webform. I need to use the submit button when pressing enter, but it's going to the back button instead.
Please help...
3
votes
2answers
841 views
iPhone - How to animate a button when pressed?
Is there a way to make a custom animation when clicking on an iPhone button? I would like something like the App Store button - it shows the price, and then when you click on it, it changes color and …
