input

Determine input from different devices

My PC has two devices working like keyboard, the normal keyboard and a HID (Human Interface Device) input device (it's a remote control). I want separate the input from keyboard and from remote, capturing only the remote control. How can I write a program in C/C++ to do this task? It's not a easy task because this program is operating ...

Complex problem in jQuery

Hello, I have a problem that has been consuming me for days. I have a div and the div has a style for it to be hidden ( .copy { display: none; } ). I have a link (Add new) that when clicked, makes a clone of that div and removes the class "copy", causing the div to appear. Inside this div, I have 4 checkbox and a text input. Clicking ...

Why does the value attribute of a button have specified = false in IE?

I have been looking for an elegant solution to converting a submit button to a button. In Internet Explorer you cannot simply change the type of an input. I couldn't change the attribute on a clone of the object either, so I thought I would manually duplicate it by creating a new object and then iterate through the attributes of the subm...

Event handler for when a user has added an image.

I have a form that lets users upload a image of them self. I need an jQuery event handler for when the input in uploaded. As always muchas gracias to any help. <script> $('#imageFile').someeventhander(function(){do some work son!}); </script> <input id="imageFile" type="file"> ...

border-radius is not working in Firefox for me on input types.

Everything works fine in webkit browsers. But when i'm trying to use border-radius with input[type="url"] it doesn't work. Not even just using input. Nothing still works. Css section.crypter input { border-radius: 15px; -moz-border-radius: 15px; -webkit-border-radius: 15px; padding: 5px; } HTML <form> <input type="ur...

How to create a custom post type with file input in wordpress 3.0?

I'm pretty new to wordpress and haven't found a post on this but how do you create a wordpress custom post type that includes a file input? Also, I'm creating a portfolio page that will have 3 large images and a thumbnail. is using a custom post type with file input the correct route? or should i be uploading my images some other way and...

What should I use to control input devices and more

Hi, I am fluent in C++, Java, and Python and can pretty much pick up any other skill given enough time (no surprise there, I'm sure 99.9% of the people reading this share the same ability). I have an idea for a small app for Mac OS X and I was wondering what technology I should employ/learn to get it working. I need some minimal OS X ...

Java: ascertaining a user's edit on a custom model JTable in order to save to a binary file

Hi folks, How do I obtain the user's edit input on a custom model JTable created from a binary file in order to save it to the binary file? I suspect that my table model's getValueAt(int, int) method is the problem because it returns data from the binary file before the edit, not the data in the particular cell. To give you an idea o...

Replace Button Text With Image?

I'm trying to find out how to replace the input text with a image. I can't use background: url(.../.../); because I am using CSS3 Gradients. I thought with using multiple backgrounds I am able to add another one that has a transparent image but then the rest of the background gradients disappear. Can anyone help me? ...

Disable user of 0 as first number in input box jquery

I have an input box: <input class="longboxsmall" type="text" name="number" value=""/> And I want to disallow the number 0 being the first number entered in the box how can I do this??? Can I use Jquery?? ...

C# Is a Parallel foreach while loop possible?

I'm not sure how the internal thread handling of Parallel.foreach works and whether it can guarantee that a construct like this would work? Parallel.Foreach(Connections, c => { Input in = c.getInput(); while (in.hasNext()) { object o = in.getNext(); dosomething(o); } } ); where i...

full path from file input using jquery

When I call val() on an input with type="file" I only get file name rather than full path. How can I get full path? ...

Mimic apple.com globalsearch input field with HTML and CSS

OK, so if you check out http://www.marioplanet.com you can see that I am trying to mimic the design of apple.com for my menu bar, including my global search bar. Now, I'm trying to mimic Apple's input field for the global search bar, as close as I possibly can, so I need some help here. I would like the field to be centered in the midd...

Preventing duplicate form submission while not breaking page when clicking Back button

I have a page with a form where I'm trying to prevent duplicate submission, which is fairly straightforward (in case anyone's curious, I used this $("form").submit(function() { setTimeout(function() { $("input").attr("disabled", "disabled"); }, 50); }); ...which I stole from this page, and it works fine. As expecte...

Setting tooltips for disabled input text boxes in javascript and CSS

I am trying to display a tooltip when you hover over a textbox which has been disabled to indicate why the textbox has been disabled. Setting the title attribute works on IE but doesn't seem to work in Mozilla Firefox. Does anyone know of a simple solution in Javascript and CSS without using JQuery or any other Javascript library. ...

php string variable containing as input for array function

Why this does not work? $stringhaha =" 1 => General, 2 => Business, 3 => Entertainment, 4 => Health, 5 => Politics, 6 => Sci/Tech, 7 => Sports, 8 => News"; $all_categories = array($stringhaha); print_r($all_categories); (will give an array with 1 item.) While this works: If I include ...

PHP in PHP, Problem with dynamic forms

hi there, I'm a newbee I've got a little problem with my php-script. I try to generate dynamic formulars with php. which works very good. the problem is, I want my data to be send to another funcion in another php-script. I gues its a problem with the syntax: <?php .... <form action=\"<?php myfunction() ?>\" ... > ... ?> When I used ...

nothing happens when clicking on my submit button no _POST values

Hi. For some reason nothing happens when a user click on my submit button. The html look like this: <td colspan="3"> <div align="center"> <input name="Decline" id="Decline" value="Decline" type="submit"> | <input name="Accept" value="Accept" type="submit"> </div><input name="place"...

hadoop inputFile as a BufferedImage

Hi everybody; Sorry for my poor english. i hope you'll understand my problem. I have a question about hadoop developpment. I have to train myself on a simple image processing project using hadoop. All i want to do is rotate an image with Hadoop (of course i don't want hadoop use the whole image). I have a problem with the inputFormat....

check if std::cin operator>> has read the whole line

Hello, I'm implementing a little command line parser. Let's say I have a command that requires 2 parameters. I want to let the user type all 3 strings (the command and 2 parameters) on one line, as well as on several lines. Currently I'm having something like this: std::string command; std::cin >> command; std::cout << command << " ent...