2
votes
1answer
55 views
Taking use of laptop custom buttons
I have a Lenovo Y550 laptop which has a nice looking touch sensitive strip with led lights on top of keyboard. The usage for this is however quite useless (it can be used to start …
0
votes
2answers
26 views
animated swap position of two buttons
I am trying to swap the position of two buttons.
my swapping code looks as below.
private void exchangeButtons(Button btn1, Button btn2) {
// Create the animation set
…
0
votes
2answers
24 views
Flex: changing Flex component styles in AS3
Hi, in MXML, there is a Button class which you can instantiate like so:
<mx:Button id="something />
but what if you wanted to dynamically build this in AS3 and add it to t …
1
vote
3answers
46 views
C# DateTimePicker Custom Format
How do I set a DateTimePicker to out put dd/mm/yyyy.
At the moment it is giving me the day, date, month then year.
Thanks.
0
votes
1answer
26 views
How to add a click handler to a WPF Button in C++/CLR?
Hi !
In C#, I can do (*):
Button b = new Button();
b.Click += ButtonOnClick;
:
void ButtonOnClick(object sender, RoutedEventArgs e)
{
// do so …
2
votes
1answer
36 views
C# Combobox Selection.
I am populating a combobox dropdown with node fields from an Xml document. I have that working. Now I have the text in the dropdown menu of the combobox. I want to be able to press …
0
votes
2answers
17 views
VB.NET Using Wizard, Changing selected Side Bar (Button) color
I have a web application where I built a wizard, going from panel to panel. Besides using the Next, Previous buttons, one can use the Side Bar to select what panel to go to. The …
0
votes
5answers
55 views
Disappearing submit button in IE7
Greetings. I'm having troubles with the following legacy code. It's fine in everything except IE7, where the submit button disappears. Space is still left for it on the page, but i …
1
vote
1answer
39 views
Graphic added over button is my blocking MouseEvent why?
Hi everyone my problem today is I have a couple of buttons that slide up and down, when in the up state I add an X graphic to symbolize a a close button. However the X graphic seem …
0
votes
3answers
95 views
Why does returning false in they keydown callback does not stop the button click event?
I have a button and the following javascript routine.
$("button").keydown( function(key) {
switch(key.keyCode) {
case 32: //space
return false;
}
} );
as I understood …
0
votes
4answers
109 views
HTML: How to make a submit button with text + image in it?
I would like to have a submit button which contains text and an image. Is this possible?
I can get the exact look I want with code that looks like:
<button type="button">
& …
0
votes
2answers
33 views
Android Dynamically Created Button: setOnClickListener doesn’t work!
onClick never fires! Why not? Please help.
for(int i = 0; i < 12; i++)
{
String title = "Button" + i;
Button sliderButton = new Button(this);
…
0
votes
1answer
15 views
Items without regions in Oracle APEX?
Hey all,
I'm currently building a web form using APEX that is losely modelled after a "wizard" style. That is, I have forward and back buttons for most pages, etc, etc.
The prob …
0
votes
2answers
54 views
Java: Problem using setText() method with Button
Hello all, I'm new to java and I'm trying to swap out the text on a Button I've created. The code for my main class is as follows:
import java.applet.*;
import java.awt.*;
import …
0
votes
1answer
23 views
Adobe Flex: Word Wrap in Button Label
The standard Flex button does not allow the Label Text to word wrap. I read in the internet that there are some undocumented ways to handle this but I did not get them to work. If …
