active questions tagged input - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:21:38Z http://stackoverflow.com/feeds/tag/input http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1922441/wpf-simulate-mouse-events-on-off-screen-rendered-grid 0 WPF - simulate mouse events on off-screen rendered Grid chrwoizi 2009-12-17T15:19:55Z 2009-12-19T10:57:15Z <p>I'm rendering a WPF grid with multiple elements (buttons, textbox, ...) to a bitmap which is then used as a texture for a 3D surface in a Direct3D scene. For user interaction I create a 3D ray from the 2D mouse cursor position into the 3D scene finding the intersection point with the gui surface. So I know where the user has clicked on the WPF grid, but from there I'm stuck: </p> <p>How can I simulate mouse events on the WPF elements while they are not actually shown in an open window but rendered off-screen? </p> <p>Recently, I was looking into UIAutomation and RaiseEvent but these are used to send events to individual elements, not the whole visual tree. Traversing the tree manually and looking for elements at the cursor position would be an option but I haven't found a way to do this accurately. VisualTreeHelper.HitTest is a good start but instead of finding TextBox it finds TextBoxView and instead of ListBox it finds a Border.</p> <p>EDIT: returning HitTestResultBehavior.Continue in the result callback of HitTest lets me walk through all elements at a given point. I can now send mouse events to all these elements but the values of the MouseEventArgs object are those of the real mouse. So I have to create a custom MouseDevice which apparently is impossible.</p> <pre><code>PointHitTestParameters p = new PointHitTestParameters(new Point( ((Vector2)hit).X * sourceElement.ActualWidth, (1 - ((Vector2)hit).Y) * sourceElement.ActualHeight)); VisualTreeHelper.HitTest(sourceElement, new HitTestFilterCallback(delegate(DependencyObject o) { return HitTestFilterBehavior.Continue; }), new HitTestResultCallback(delegate(HitTestResult r) { UIElement el = r.VisualHit as UIElement; if (el != null) { MouseButtonEventArgs e = new MouseButtonEventArgs(Mouse.PrimaryDevice, 0, MouseButton.Left); if (leftMouseDown) e.RoutedEvent = Mouse.MouseDownEvent; else e.RoutedEvent = Mouse.MouseUpEvent; el.RaiseEvent(e); } return HitTestResultBehavior.Continue; }), p); </code></pre> http://stackoverflow.com/questions/1925811/javascript-focus-on-browse-button-of-file-input 1 Javascript focus on browse button of file input zoom.pat27 2009-12-18T01:52:28Z 2009-12-18T09:24:22Z <p>I am trying to focus on the browse button of the file input control.</p> <p>so I have something like</p> <pre><code> &lt;input type="file" name="upload" id="upload" &gt; </code></pre> <p>and in javascript I have</p> <pre><code>document.getElementById("upload").focus(); </code></pre> <p>but the focus remain on the text field and comes to browse button only after i hit tab. Is there a way that I could write a script to set the focus on the browse button?</p> <p>Thanks for your help!</p> http://stackoverflow.com/questions/1925887/splitting-up-lines-into-ints 0 Splitting up lines into ints LM 2009-12-18T02:17:26Z 2009-12-18T03:13:45Z <p>I have a file that I read from, it contains a bunch of lines each with a different number of integers, I'm having trouble splitting it up into a vector of a vector of ints.</p> <p>This is my current code.</p> <pre><code>std::vector&lt;int&gt; read_line() { std::vector&lt;int&gt; ints; int extract_int; while((const char*)std::cin.peek() != "\n" &amp;&amp; std::cin.peek() != -1) { std::cin &gt;&gt; extract_int; ints.push_back(extract_int); } return ints; } std::vector&lt;std::vector&lt;int&gt; &gt; read_lines() { freopen("D:\\test.txt", "r", stdin); freopen("D:\\test2.txt", "w", stdout); std::vector&lt;std::vector&lt;int&gt; &gt; lines; while(!std::cin.eof()) { lines.push_back(read_line()); } return lines; } </code></pre> <p>The problem is that all of the ints are being read as a single line.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1918098/xslt-form-fields-get-input-with-unknown-name 0 xslt form fields - get input with unknown name Tillebeck 2009-12-16T22:00:36Z 2009-12-17T22:37:51Z <p>UPDATED - since I was not clear in me expressions. Will try again:</p> <p>I have a form with several inputs that are created dynamically like this:</p> <pre><code>&lt;form id="tellafriend_form" method="post" action="landingpage.aspx"&gt; &lt;!-- static example --&gt; &lt;input type="text" id="my_example" name="my_example" value="" /&gt; &lt;!-- dynamic part --&gt; &lt;xsl:for-each select="something"&gt; &lt;xsl:variable name="publicationId" select="@id"/&gt; &lt;input type="text" id="{$publicationId}" name="{$publicationId}" value="" /&gt; &lt;/xsl:for-each&gt; &lt;/form&gt; </code></pre> <p>When submitted how do I get the value from the input using xslt? I can get it from the static input field but not from the dynamic fields since I do not know there names/ids.</p> <p>I know that all $publicationId will be an integer greater than 2000 but less than 4000. If needed they can easily be prefixed with some text (if numbers alone make a problem).</p> <p>An XSLT solution would be preferred. Or using jQuery if that could do the trick (saw this, that may be another solution: <a href="http://stackoverflow.com/questions/169506/get-form-input-fields-with-jquery">http://stackoverflow.com/questions/169506/get-form-input-fields-with-jquery</a>).</p> <p>BR. Anders</p> http://stackoverflow.com/questions/1907538/python-import-a-file-and-convert-to-a-list 0 Python: Import a file and convert to a list harpalss 2009-12-15T13:40:51Z 2009-12-16T14:28:34Z <p>I need help with importing a file and converting each line into a list.</p> <p>An example of the file would look like:</p> <pre><code>p wfgh 1111 11111 111111 287 48 0 65626 -1818 0 4654 21512 02020 0 </code></pre> <p>The first line beginning with p is a header and the rest are clauses. Each clause line must begin with a series of at least two integers and finish with a zero</p> <p>thanks in advance</p> http://stackoverflow.com/questions/1907647/python-rawinput-def-input-problem 1 python raw_input def input problem JohnWong 2009-12-15T13:57:20Z 2009-12-15T14:46:20Z <p>I am only going to post the portion where the problem is at, the program has no error (all the codes are valid except for this <code>raw_input</code> problem)</p> <p>I tested with <code>search_function(1)</code> and etc and it worked.</p> <p>But if I do this while loop, it doesn't print anything. Example output:</p> <blockquote> <p>Enter a number to print specific table, or STOP to quit: 2 Enter a number to print specific table, or STOP to quit: 2 Enter a number to print specific table, or STOP to quit: 1 Enter a number to print specific table, or STOP to quit: Enter a number to print specific table, or STOP to quit: 1 Enter a number to print specific table, or STOP to quit: Enter a number to print specific table, or STOP to quit: STOP</p> </blockquote> <pre><code>def search_function(x): if x == 1: for student in students: print "%-17s|%-10s|%-6s|%3s" % student.print_information() print '\n' if x == 2: print "%-17s|%-10s|%s" %(header[0],header[1],header[4]) print "-" * 45 for student in students: print "%-17s|%-10s|%s" %student.print_first() print '\n' print "Simple Analysis on favorite sports: " # Printing all sports that are specified by students for s in set(Student.sports): # class attribute print s, Student.sports.count(s), round(((float(Student.sports.count(s)) / num_students) *100),1) # Printing sports that are not picked allsports = ['Basketball','Football','Other','Baseball','Handball','Soccer','Volleyball','I do not like sport'] for s in set(allsports) - set(Student.sports): print s, 0, '0%' choice_list = Student.sports for choice in choice_list: choice_dict[choice] = choice_dict.get(choice, 0) + 1 print max(choice_dict) print min(choice_dict) elif x == 3: print "%-17|%-10s|%-16s|%s" %(header[0],header[1],header[5],header[6]) print "-" * 45 for student in students: print "%-17s|%-10s|%-16s|%s" % student.print_second() print '\n' elif x == 4: print "%-17s|%-10s|%s" %(header[0],header[1],header[7]) print "-" * 45 for student in students: print "%-17s|%-10s|%s" %student.print_third() print '\n' elif x == 5: print "%-17s|%-10s|%-15s|%s" %(header[0],header[1],header[8],header[9]) print "-" * 45 for student in students: print "%-17s|%-10s|%-16s|%s" % student.print_fourth() print '\n' x = raw_input("Enter a number to print specific table, or STOP to quit: ") while x != 'STOP': search_function(x) x = raw_input("Enter a number to print specific table, or STOP to quit: ") </code></pre> http://stackoverflow.com/questions/1904170/python-checking-header-format 2 Python: Checking Header Format harpalss 2009-12-14T23:09:35Z 2009-12-15T00:56:13Z <p>I'm new to python and need help with a problem. Basically I need to open a file and read it which I can do no problem. The problem arises at line 0, where I need to check the header format.</p> <p>The header needs to be in the format: <code>p wncf nvar nclauses hard</code> where 'nvar' 'nclauses' and 'hard' are all positive integers.</p> <p>For example:</p> <p><code>p wncf 1563 817439 186191</code></p> <p>would be a valid header line.</p> <p>Here is coding i have already thanks to a question people answered earlier:</p> <pre><code>import re filename = raw_input('Please enter the name of the WNCF file: ') f = open(filename, 'r') for line in f: p = re.compile('p wncf \d+ \d+ \d+$') if p.match(line[0]) == None: print "incorrect format" </code></pre> <p>I still get an incorrect format even when the file is of a correct format. Also, would it be possible to assign the integers to an object?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1869781/disable-operas-autocomplete 0 Disable Opera's autocomplete LeGaS 2009-12-08T20:57:21Z 2009-12-14T14:20:36Z <p>Hello!</p> <p>Opera's autocomplete function draws a yellow border around text inputs where it saved data. Is there any way to disable it programmatically?</p> <p>Here's a picture to illustrate it: <img src="http://img709.imageshack.us/img709/4469/opera.png" alt="opera autocomplete"></p> http://stackoverflow.com/questions/1899477/php-how-to-use-arrays-for-form-input-and-update-respective-database-records 0 PHP - How to use arrays for form input and update respective database records TC 2009-12-14T07:36:02Z 2009-12-14T11:33:25Z <p>I'm new to PHP... I want to know how to populate a form from mySQL. I'm stumped at the input section where I am trying to allow the user to select choices for radio button /checkbox for each record. thanks in advance for anyone's help!</p> <p>TC</p> <p>Here's a snippet of my code:</p> <pre><code>&lt;?php $mQuantity = 1; $con = mysql_connect("localhost","t","c"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("tc", $con); /* if request.form("itemname")&lt;&gt;" " then cSQLAcct = "SELECT * FROM Restaurant_Menus WHERE Restaurant_ID='" &amp; mRestaurant_ID &amp; "' and Item like '%" &amp; Request.Form("ITEMNAME") &amp; "%' ORDER BY FOODTYPE, ITEM" else cSQLAcct = "SELECT * FROM Restaurant_Menus WHERE Restaurant_ID='" &amp; mRestaurant_ID &amp; "' ORDER BY FOODTYPE, ITEM" end if */ // retrieve form data $input = $_POST['itemname']; echo $_POST['ITEM']; $mItem = $_POST['ITEM']; $mPrice = $_POST['PRICE']; $mQuantity = $_POST['QUANTITY']; $mOrderTotal = 0; $mSide0 = '1'; $mOil = '1'; $mStarch = '1'; $mSalt = '1'; // use it echo "You searched for: &lt;i&gt;$input&lt;/i&gt;"; echo $mSessionID; mysql_query("INSERT INTO OrderQueue (SessionID,item,quantity,price,no_oil,no_starch,no_salt,side0) VALUES ('$mSessionID','$mItem','$mQuantity','$mPrice','$mOil','$mStarch','$mSalt','$mSide0')"); /* $sql="SELECT * FROM Restaurant_Menus WHERE Item like '%$input%'"; */ $sql="SELECT * FROM OrderQueue WHERE SessionID = '$mSessionID'"; $result = mysql_query($sql); //('$_POST[firstname]','$_POST[lastname]','$_POST[age]')"; //echo $input; //echo $sql; /* if ($input!=" "){ $result = mysql_query($sql); } // cSQLAcct = "SELECT * FROM Restaurant_Menus WHERE Restaurant_ID='" &amp; mRestaurant_ID &amp; "' and Item like '%" &amp; Request.Form("ITEMNAME") &amp; "%' ORDER BY else { $result = mysql_query("SELECT * FROM Restaurant_Menus"); } */ $c=1; $class[1] = 'odd'; $class[2] = ''; $array_no_oil = array(); $array_no_salt = array(); $array_no_starch = array(); $array_rice = array(); echo "&lt;table border='1' width=500px&gt; &lt;tr&gt; &lt;th&gt;&lt;/th&gt; &lt;th align=left&gt;Item&lt;/th&gt; &lt;th align=right&gt;Price&lt;/th&gt; &lt;th align=right&gt;Quantity&lt;/th&gt; &lt;/tr&gt;"; //&lt;tr onMouseOver="this.bgColor = '#F3EB49'" onMouseOut ="this.bgColor = '#DDDDDD'" bgcolor="#DDDDDD"&gt; while($row = mysql_fetch_array($result)) { //echo '&lt;tr class="'.$class[$c].'" onMouseOver='#F3EB49' onMouseOut ='#DDDDDD' bgcolor="#DDDDDD" &gt;'; //echo "&lt;tr class='odd'&gt;"; //echo '&lt;tr onMouseOver="this.bgColor = '#F3EB49'" onMouseOut ="this.bgColor = '#DDDDDD'" bgcolor="#DDDDDD"&gt;' ?&gt; &lt;TR onMouseover="this.bgColor='#FFC000'"onMouseout="this.bgColor='#DDDDDD'"&gt; &lt;?php /* &lt;form action="Orders.asp" method="post" target="_top" name="LogonForm"&gt; &lt;td&gt;&lt;font size = 2&gt; &lt;!--&lt;%= mQuantity %&gt;--&gt; &lt;INPUT TYPE="TEXT" NAME="QUAN" VALUE="1" SIZE=2&gt; &lt;/font&gt;&lt;/td&gt; &lt;td width=50px&gt;&lt;font size = 2&gt; &lt;INPUT TYPE=HIDDEN NAME=ITEM VALUE="&lt;% =mItem %&gt;"&gt; &lt;INPUT TYPE=HIDDEN NAME=PRICE VALUE=&lt;% =mPrice %&gt;&gt; &lt;INPUT TYPE=HIDDEN NAME=RID VALUE= &lt;% =mRestaurant_ID %&gt;&gt; &lt;INPUT TYPE=HIDDEN NAME=ADDITEM VALUE = "1"&gt; &lt;input id="Choices" class="findit" type="submit" value ="Order" /&gt; &lt;/form&gt; */ ?&gt; &lt;?php // Obtain list of images from directory //$img = getRandomFromArray($imgList); } ?&gt; &lt;?php if ($row['Picture']!=" "){ echo "&lt;td&gt;&lt;a&gt;&lt;img src='images/".$row['Picture'].".JPG' height=50px&gt;&lt;/a&gt;&lt;/td&gt;"; } else{ echo "&lt;td&gt;&lt;/td&gt;"; } echo "&lt;td width=200&gt;&lt;b&gt;" . $row['Item'] . "&lt;/b&gt;&lt;br&gt; &lt;input class='dropwidth' type='radio' name='$array_rice' value='1' selected&gt;White Rice&lt;br&gt; &lt;input type='radio' name='$array_rice' value='2'&gt;Pork Fried Rice&lt;br&gt; &lt;input type='radio' name='$array_rice' value='3'&gt;Brown Rice&lt;br&gt; &lt;input type='checkbox' name='$array_no_oil' value='1' /&gt;No Oil &lt;input type='checkbox' name='starch' value='no oil' /&gt;No Starch &lt;input type='checkbox' name='salt' value='no salt' /&gt;No Salt &lt;/td&gt;"; echo "&lt;td width=50 align=right&gt;" . number_format($row['Price'],2) . "&lt;/td&gt;"; $mQuantity = "'" . number_format($row['Quantity'],0) . "'"; $mPrice = "'" . number_format($row['Price'],2) . "'"; $mLineItemTotal = $row['Quantity'] * $row['Price']; $mOrderTotal = (number_format($mOrderTotal,2) + number_format($mLineItemTotal,2)); echo $mOrderTotal; $mLineItemTotal2 = "'". number_format($mLineItemTotal,2) . "'"; //echo "&lt;td&gt;" . $mQuantity. "&lt;/td&gt;"; ?&gt; &lt;form action="orders.php" method="post" target="_top" name="LogonForm"&gt; &lt;td width="50" align=right&gt;&lt;font size = 2&gt; &lt;!--&lt;%= mQuantity %&gt;--&gt; &lt;!--&lt;INPUT TYPE="TEXT" NAME="QUANTITY" VALUE=&lt;?php $mQuantity; ?&gt;&gt;--&gt; &lt;INPUT TYPE="TEXT" NAME="QUANTITY" VALUE=&lt;?php echo $mQuantity.";" ?&gt;/&gt; &lt;/font&gt;&lt;/td&gt; &lt;?php echo "&lt;td width=50 align=right&gt;" . $mLineItemTotal . "&lt;/td&gt;";?&gt; &lt;!--&lt;td width=50px&gt;&lt;font size = 2&gt;--&gt; &lt;!--&lt;INPUT TYPE="TEXT" NAME="LINEITEMTOTAL" VALUE=&lt;?php echo $mLineItemTotal.";" ?&gt; WIDTH=10/&gt;--&gt; &lt;INPUT TYPE=HIDDEN NAME=ITEM VALUE=&lt;?php $mItem ?&gt; /&gt; &lt;INPUT TYPE=HIDDEN NAME=PRICE VALUE=&lt;?php $mPrice ?&gt;/&gt; &lt;INPUT TYPE=HIDDEN NAME=RID VALUE=&lt;?php $mRestaurant_ID ?&gt;/&gt; &lt;INPUT TYPE=HIDDEN NAME=ADDITEM VALUE = "1"&gt; &lt;!--&lt;input id="Choices" class="findit" type="submit" value ="Order" /&gt;--&gt; &lt;/form&gt; &lt;?php echo "&lt;/tr&gt;"; if($c==2) $c=0; $c++; } echo "&lt;/table&gt;"; echo "&lt;div&gt;".$mOrderTotal."&lt;/div&gt;"; mysql_close($con); ?&gt; </code></pre> http://stackoverflow.com/questions/1893428/ways-to-remove-the-autocomplete-of-an-input-box 2 Ways to remove the autocomplete of an input box Mala 2009-12-12T13:32:53Z 2009-12-12T13:44:13Z <p>Hi</p> <p>I need a text input field which does not use the autocomplete function - If a user has submitted the form before, his previous submissions should -not- appear as he types into the form again, even if he is typing the same thing again. As far as I can tell, there are a few ways to do this:</p> <p><b>1. <code>&lt;form autocomplete="off"&gt;</code></b><br> However, I believe this is a proprietary tag, and I am not sure how compatible it is across browsers</p> <p><b>2. Give the input field a random 'name'</b><br> One could even use JS to set the name back to an expected value before submission. However, if the user does not have JS installed, you'd need another hidden input with the name - and the php code on the other side gets messy fast.</p> <p>Do you know of any other ways? Is one of these ways the "accepted" way? Comments?</p> <p>Thanks,<br> Mala</p> http://stackoverflow.com/questions/1888736/updating-bean-from-jsf-datatable 1 Updating Bean from JSF dataTable ajr 2009-12-11T15:18:20Z 2009-12-11T15:23:34Z <p>I've got this h:dataTable and form:</p> <pre><code>&lt;h:form&gt; &lt;h:dataTable value='#{bean.allData.dataItems}' var='item'&gt; &lt;h:column&gt; &lt;h:outputText value='#{item.id}' /&gt; &lt;/h:column&gt; &lt;h:column&gt; &lt;h:inputText value='#{item.name}' /&gt; &lt;/h:column&gt; &lt;/h:dataTable&gt; &lt;h:commandButton value="Save" action="#{bean.saveEntries}"/&gt; &lt;/h:form&gt; </code></pre> <p>So the table shows the id and a textbox with the name in. That works. When a user clicks the button, I'd like it to save any changes to the name field.</p> <p>DataBean has:</p> <pre><code>private Vector&lt;ItemBean&gt; dataItems; // constructor here public void setDataItems(Vector v) { dataItems = v; } public Vector getDataItems() { return dataItems; } </code></pre> <p>and ItemBean has...</p> <pre><code>private String id; private String name; // setter for both // getter for both </code></pre> <p>Bean has a variable 'allData' of type 'DataBean'.</p> <p>Bean also has a method saveEntries() which is currently blank (as I'm not sure how it works). How do I reference the inputs to set these values?</p> http://stackoverflow.com/questions/1856495/cakephp-comment-form-input-keeps-the-same-value-after-i-press-add 0 Cakephp comment form input keeps the same value after i press add Andrei 2009-12-06T20:24:46Z 2009-12-10T19:25:52Z <p>Hello, I've created a blog site from "Beginning CakePHP from novice to professiona"-David Golding. I have the comment view listed below:</p> <pre><code>&lt;div class="comments form"&gt; &lt;?php echo $form-&gt;create('Comment');?&gt; &lt;fieldset&gt; &lt;legend&gt;&lt;?php __('Add Comment');?&gt;&lt;/legend&gt; &lt;?php echo $form-&gt;input('name'); echo $form-&gt;input('content'); echo $form-&gt;input('post_id'); ?&gt; &lt;/fieldset&gt; &lt;?php echo $form-&gt;end('Submit');?&gt; &lt;/div&gt; &lt;div class="actions"&gt; &lt;ul&gt; &lt;li&gt;&lt;?php echo $html-&gt;link(__('List Comments', true), array('action' =&gt; 'index'));?&gt;&lt;/li&gt; &lt;li&gt;&lt;?php echo $html-&gt;link(__('List Posts', true), array('controller' =&gt; 'posts', 'action' =&gt; 'index')); ?&gt; &lt;/li&gt; &lt;li&gt;&lt;?php echo $html-&gt;link(__('New Post', true), array('controller' =&gt; 'posts', 'action' =&gt; 'add')); ?&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> <p>The problem is after i press Submit the values remains in name and content fields. Can anybody help me?</p> <p>Thanks,</p> http://stackoverflow.com/questions/1882977/asp-net-mvc-accept-formatted-input 0 Asp.net MVC accept formatted input? jcm 2009-12-10T18:20:01Z 2009-12-10T18:40:25Z <p>How is formatted user input typically handled in an MVC application? A user entering "1,000.00" for a number for example. I'm somewhat surprised the default ModelBinder does not pick up on this. Would this be the type of thing I would create my own ModelBinder for?</p> http://stackoverflow.com/questions/1883024/asp-page-not-receiving-post-parameters 1 ASP page not receiving POST parameters eidylon 2009-12-10T18:26:28Z 2009-12-10T18:38:09Z <p>Hi all, I am writing a small application in Classic ASP. I have a page which has a form, which posts to a second page. Included with the form's POST, are file uploads, hence the need for a POST method. </p> <p>The second page though is NOT seeing ANY of the fields being sent by the first page. Calling either <code>Request("param")</code> or <code>Request.Form("param")</code> both just return empty string. </p> <p>If i switch the method on my form from POST to GET (with <strong>NO</strong> other changes), then the values are properly picked up by the receiving page, of course then I cannot do the file uploads, which are a crucial part of this application.</p> <p>In GET mode, the parameters are all put on the url as expected. In POST mode, I fired up FireBug, and examined the POST data of my request. The originating form <strong>IS</strong> sending all the values in the request (they show up in FireBug as expected), so the problem seems to be on the receiving page's end.</p> <p>The form is being submitted via code, called from the button with the <code>onclick="javascript:saveMinutes();"</code></p> <p>My form and the saveMinutes() function are declared as follows: </p> <pre><code>&lt;form id="frmMinutes" enctype="multipart/form-data" method="post" action="saveminutes.asp"&gt; &lt;table id="tblMinutes" style="width: 100%;"&gt; &lt;tr&gt; &lt;td&gt; &lt;select id="selYear" name="year" size="13" onclick="javascript:setDatePickerRange(); checkForMinutes();"&gt; &lt;%For lc = Year(Now) To getMinutesFirstYear() Step - 1%&gt; &lt;option value="&lt;%=lc%&gt;" &lt;%If lc = Year(Now) Then%&gt;selected="selected"&lt;%End If%&gt;&gt;&lt;%=lc%&gt;&lt;/option&gt; &lt;%Next%&gt; &lt;/select&gt; &lt;/td&gt; &lt;td&gt; &lt;select id="selMonth" name="month" size="13" onclick="javascript:setDatePickerRange(); checkForMinutes();"&gt; &lt;%For lc = 1 To 12%&gt; &lt;option value="&lt;%=lc%&gt;" &lt;%If lc = Month(Now) Then%&gt;selected="selected"&lt;%End If%&gt;"&gt;&lt;%=MonthName(lc)%&gt;&lt;/option&gt; &lt;%Next%&gt; &lt;/select&gt; &lt;/td&gt; &lt;td style="width: 100%; padding-left: 20px;"&gt; &lt;table id="enterMinutes" style="width: 100%"&gt; &lt;tr&gt; &lt;th&gt;Topic:&lt;/th&gt; &lt;td&gt;&lt;input id="topic" name="topic" type="text" maxlength="100" field="topic" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;Presenter:&lt;/th&gt; &lt;td&gt;&lt;input id="presenter" name="presenter" type="text" maxlength="100" field="presenter" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th&gt;Date:&lt;/th&gt; &lt;td&gt;&lt;input id="mtgdate" name="mtgdate" type="text" maxlength="10" class="datepick" field="mtgdate" readonly="readonly" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th style="vertical-align: top;"&gt;Files:&lt;/th&gt; &lt;td style="text-align: left;"&gt; &lt;input id="file0" name="file0" type="file" size="35" /&gt;&lt;span class="redEmphasis" style="margin: 0px 10px 0px 10px;"&gt;(.doc or .docx)&lt;/span&gt;&lt;input type="button" value="+" onclick="javascript:addFileUpload();" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;th style="vertical-align: top;"&gt;&lt;/th&gt; &lt;td style="text-align: left; padding: 10px 0px 10px 0px;"&gt; &lt;input type="button" style="width: 100%" value="update minutes" onclick="javascript:saveMinutes();" /&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;span id="warnexist" class="redEmphasis" style="display: none;"&gt;The selected month already has associated minutes (). doc files take precedence over docx.&lt;/span&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/form&gt; </code></pre> <p>saveMinutes(): </p> <pre><code>function saveMinutes() { if($('form#frmMinutes input[type=text]').filter(function () { return $(this).val() == '' }).length &gt; 0) { alert('Please enter all fields.'); return; } if ($('form#frmMinutes input#file0').filter(function () { return !$(this).val().match(/.*\.docx?$/i) }).length &gt; 0) { alert('First file must be doc or docx.'); return; } $('form#frmMinutes input[type=file]').filter(function () { return $(this).val() == '' }).next().remove(); $('form#frmMinutes input[type=file]').filter(function () { return $(this).val() == '' }).remove(); removeDupeFiles(); // reindex file inputs after removing emptys/dupes var fs = $('form#frmMinutes input[type=file]:gt(0)'); for (lc = 1; lc &lt;= fs.length; lc++) { var fid = 'file' + new String(lc); $(fs[lc-1]).attr('id', fid).attr('name', fid); } $('form#frmMinutes')[0].submit(); } </code></pre> http://stackoverflow.com/questions/1650916/selecting-good-non-conflicting-keybindings-for-a-game 6 Selecting good, non-conflicting keybindings for a game Stefan Monov 2009-10-30T16:32:49Z 2009-12-10T17:46:44Z <p>PC keyboards weren't designed for gaming, compromises were made to bring the price down, so some problems occur. Most importantly, when you hold down certain keycombos, some keys don't react to pressing.</p> <p>My game has two users at the same PC control two characters in realtime (i.e. not turn based). An instance of the problem: player 1 holds Up and Left to go in that diagonal direction. Player 2 is then unable to go to the right (with "D"). Beyond being merely annoying, it can give an unfair advantage to a player who opts to use the bug as a cheat. Not fun :(</p> <p>The basic commands are: shooting, walking left and right, and jumping. Shooting is done with LeftControl and RightControl, which don't conflict with anything, so let's consider only the movement keys.</p> <p>On my laptop, most obvious keybinding combinations fail:</p> <ul> <li>WAD and arrow keys fails with Up+Left+S and Up+Left+D</li> <li>IJL and arrow keys fails with Down+Right+J (though Down is technically unused, a player often holds it down anyway)</li> <li>arrow keys and numpad keys fail with Down+Left+NumpadLeft</li> <li>all-letter combos like WAD and IJL tend to work, but I don't like leaving the arrowkeys unused, and crowding the users' hands together.</li> </ul> <p><strong>Is there a website</strong> that list statistics of common supported keycombos on various keyboards, to help me make my decision for defaults? (they're configurable, but defaults matter.) I seem to recall a relevant site called keyboardssuck.com, but I can't find it now.</p> <p><strong>How have you dealt</strong> with this problem? Just ignored it?</p> <p><strong>Does the problem depend</strong> on the OS, the API, the mobo? On anything else? I think it only depends on the keyboard model, but gotta ask.</p> <p>edit: Now I know what this is called: <a href="http://en.wikipedia.org/wiki/Rollover_(key)" rel="nofollow">"rollover"</a></p> http://stackoverflow.com/questions/1878942/input-type-conversion-jquery 0 <input /> type conversion (jQuery) Nimbuz 2009-12-10T06:10:27Z 2009-12-10T06:43:34Z <p>I have this:</p> <pre><code>&lt;input type="text" value="Enter Password" class="password" /&gt; </code></pre> <p>... onclick/onfocus, I'd like to change the input type to 'password' and value removed, like so:</p> <pre><code>&lt;input type="password" value="" class="password" /&gt; </code></pre> <p>This doesn't seem to work:</p> <pre><code>$('input.password').click(function () { $(this).attr('type', 'password'); }); </code></pre> <p>(See <a href="http://stackoverflow.com/questions/1878767/label-for-password-field">this</a> question for why I want to do this)</p> http://stackoverflow.com/questions/1878767/label-for-password-field 1 Label for password field Nimbuz 2009-12-10T05:16:59Z 2009-12-10T05:28:02Z <pre><code>&lt;input type="text" value="useraname" /&gt; &lt;input type="password" value="password" /&gt; </code></pre> <p>I'm using jQuery to make the inline labels disappear on click/focus. Password shows bulls as usual, but I wonder if its possible somehow to show "Password" label as text (instead of ••••) inside the password field?</p> <p>Edited to add: I want the user-typed password to be hidden ofcourse!.</p> <p>Thanks</p> http://stackoverflow.com/questions/1825043/reading-different-data-from-a-textfile-delimited-with-semicolons-in-c 0 Reading different data from a textfile delimited with semicolons in C. Chris_45 2009-12-01T09:34:09Z 2009-12-10T04:56:03Z <p>How do one read different records of data that are separated with semicolons into an array in C?</p> <p><em>from textfile:</em> <strong>Text One; 12.25; Text Two; 5; Text Three; 1.253</strong></p> <pre><code>fopen ... for(i = 0; i &lt; nrRecords; i++) { fscanf(myFile, " %[^;];", myRecords[i].firstText); /* Ok first text*/ fscanf(myFile, "%lf", &amp;myRecords[i].myDouble1); /* But goes wrong with first double */ fscanf(myFile, " %[^;];", myRecords[i].secondText); fscanf(myFile, "%d", &amp;myRecords[i].myInt1); fscanf(myFile, " %[^;];", myRecords[i].thirdText); fscanf(myFile, "%lf",&amp;myRecords[i].myDouble2); } fclose... </code></pre> http://stackoverflow.com/questions/1846255/trigger-event-of-auto-popup-list-selection-via-javascript 1 Trigger event of auto popup list selection via javascript Mountain 2009-12-04T11:00:56Z 2009-12-09T10:26:15Z <p>I have previously entered value 1111, 1222, and 1333 into a HTML text input. Now if I enter 1 to the text input, it should popup a list with value 1111, 1222, and 1333 as available options. How do you trigger an event when any one of these options is selected?</p> <p>I have a javascript function that performs a calculation on values entered into the text input via "onkeyup" event. This works very well if the user just enter value via keyboard. However, it does not work if the user is selecting a previously entered value from the auto popup list.</p> <p>I know we can turn off the auto popup list by adding autocomplete="off" to the form/text input. But is there any solution to make it work with the auto popup list? I have tried all available event options including "onchange", but none of those works.</p> <p>The HTML code is very simple:</p> <pre><code>&lt;input id="elem_id_1" name="output" type="text" value="0" onkeyup="update();"/&gt; </code></pre> <p>The js function is very simple too:</p> <pre><code>function update() { var a = $('elem_id_1').value; $('elem_id_2').value = a / 100; } </code></pre> http://stackoverflow.com/questions/1870406/why-is-the-not-working-for-my-password-input-on-ie 0 Why is the ***** not working for my password input on IE? Ralph The Mouf 2009-12-08T22:41:07Z 2009-12-08T22:44:45Z <p>On all other browers, when someone types in a password the <strong>*</strong> for security works just fine. For some reason those are not showing up on IE and the password is just showing up as is. Any ideas?</p> http://stackoverflow.com/questions/1856759/find-value-in-a-txt-put-it-as-an-input-in-b-txt-using-batch 0 find value in a.txt , put it as an input in b.txt using batch kemarol 2009-12-06T22:00:45Z 2009-12-08T15:27:51Z <p>Hi guys, I am looking for your help on the following.</p> <p>I am going to read a value in a.txt, and put it as an input for b.txt The problem is, in a.txt, the value will keep changing due to iteration process. So, it is better to point a pointer to WHERE the value will appear. Ex. (as in a.txt file)</p> <pre><code>X = 12345 </code></pre> <p>so, i would like to point where is X, and then read the value next to X, put it as input to b.txt.</p> <p>I hope that it is possible using batch file in Windows command prompt.</p> http://stackoverflow.com/questions/861793/trouble-reading-a-line-using-fscanf 1 Trouble reading a line using fscanf() sofsr 2009-05-14T06:12:25Z 2009-12-08T12:29:18Z <p>I'm trying to read a line using the following code:</p> <pre><code>while(fscanf(f, "%[^\n\r]s", cLine) != EOF ) { /* do something with cLine */ } </code></pre> <p>But somehow I get only the first line every time. Is this a bad way to read a line? What should I fix to make it work as expected?</p> http://stackoverflow.com/questions/1859323/net-inject-data-into-input-buffer-of-process 0 .NET: Inject Data into Input-Buffer of Process sc911 2009-12-07T11:03:43Z 2009-12-07T14:27:13Z <p>Hi *</p> <p>I need to automate an command line application. It asks the user to enter a password. All my approches to send the password via STDIN failed. Now I am trying to do this with an wrapper-programm using .NET.</p> <p>I am starting the application creating a new process, setting the <code>StartInfo</code>-properties and then start the process:</p> <pre><code>Dim app_path As String Dim app_args As String Dim myProcess As Process = New Process() myProcess.StartInfo.FileName = app_path myProcess.StartInfo.Arguments = app_args myProcess.StartInfo.UseShellExecute = False myProcess.Start() </code></pre> <p>I did try to use the <code>StartInfo.RedirectStandardInput</code> Property but with no success.</p> <p>Now I came accross the <code>WriteConsoleInput</code> function from the <code>kernel32.dll</code> that I included like this:</p> <pre><code>Declare Function WriteConsoleInput Lib "kernel32.dll" Alias "WriteConsoleInputA" (ByVal hConsoleInput As Integer, ByVal lpBuffer As String, ByVal nNumberOfCharsToWrite As Integer, ByRef lpNumberOfCharsWritten As Integer) As Boolean </code></pre> <p>I can get the handle of the process via the <code>myProcess.Handle</code> property. But sending input to the input-buffer using this way was also not possible.</p> <p>I found those questions but they did not help:</p> <ul> <li><p>How do I write ‘PAGE DOWN’ into the console input buffer? (1475353)</p></li> <li><p>Java - passing input into external C/C++ application (1421273)</p></li> <li><p>Controlling a Windows Console App w/ stdin pipe (723424)</p></li> </ul> <p>Using StraceNtX.exe I got this output for the moment the app is waiting for input:</p> <pre><code>[T4024] GetConsoleMode(f, 12d35c, 12d3af, 77bff894, ...) = 1 [T4024] SetConsoleMode(f, 0, 12d3af, 77bff894, ...) = 1 [T4024] ReadConsoleInputA(f, 12d348, 1, 12d360, ...) = 1 </code></pre> <p>Can anyone tell me, what else to try or how to do the above the right way? Thanks!</p> <p><hr></p> <p>Based on Tim Robinsons answere I've got this code now, but it does not work:</p> <pre><code>myProcess = New Process() myProcess.StartInfo.FileName = app_path myProcess.StartInfo.Arguments = app_args myProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal myProcess.StartInfo.UseShellExecute = False myProcess.Start() ' Wait for process requesting passwort input System.Threading.Thread.Sleep(3000) Dim len As Integer len = 0 Dim handle As Integer handle = GetStdHandle(STD_INPUT_HANDLE) WriteConsoleInput(handle, "Test", 4, len) </code></pre> <p>My programm is an commandline application that should act as an wrapper.</p> <p>The input is send but in a way that it is not typed into the password field but that below the password field a new promt is shown (without even showing the input).</p> <p>Tim, can you give me an example?</p> http://stackoverflow.com/questions/1858857/comparing-user-input-integers-to-dictionary-values-python 1 Comparing user input integers to dictionary values? (Python) WorkingStudent09 2009-12-07T09:33:27Z 2009-12-07T10:40:42Z <p>Hey everybody,</p> <p>I'm a python noob and I'm trying to write a program that will show a user a list of phone numbers called greater than X times (X input by users). I've got the program to successfully read in the duplicates and count them (the numbers are stored in a dictionary where {phoneNumber : numberOfTimesCalled}), but I need to compare the user input, an integer, with the value in the dictionary and then print the phone numbers that were called X or more times. This is my code thus far:</p> <pre><code> import fileinput dupNumberCount = {} phoneNumLog = list() for line in fileinput.input(['PhoneLog.csv']): phoneNumLog.append(line.split(',')[1]) userInput3 = input("Numbers called greater than X times: ") for i in phoneNumLog: if i not in dupNumberCount: dupNumberCount[i] = 0 dupNumberCount[i] += 1 print(dupNumberCount.values()) userInput = input("So you can view program in command line when program is finished") </code></pre> <p>Basically, I can't figure out how to convert the dictionary values to integers, compare the user input integer to that value, and print out the phone number that corresponds to the dictionary value. Any help GREATLY appreciated!</p> <p>By the way, my dictionary has about 10,000 keys:values that are organized like this:</p> <pre><code>'6627793661': 1, '6724734762': 1, '1908262401': 1, '7510957407': 1 </code></pre> <p>Hopefully I've given enough information for you all to help me out with the program!</p> http://stackoverflow.com/questions/1280746/how-to-flush-the-io-buffer-in-erlang 2 How to flush the io buffer in Erlang? Nate Murray 2009-08-14T23:57:38Z 2009-12-07T01:46:42Z <p>How do you flush the io buffer in Erlang?</p> <p>For instace:</p> <p><code>io:format("hello")</code> or <code>io:format(user, "hello")</code></p> <p><a href="http://www.nabble.com/flushing-IO-td17208130.html" rel="nofollow">This post</a> seems to indicate that there is no clean solution.</p> <p>Is there a better solution than in that post? </p> http://stackoverflow.com/questions/1321256/type-code-in-to-a-text-input-form-how 0 Type code in to a text input form, how? Per Magnusson 2009-08-24T09:07:43Z 2009-12-07T01:00:00Z <p>Hello! I want to know the best way of writing out my "$imagepath" in to this input </p> <p>This is my upload script</p> <pre><code>&lt;?php if(isset($_POST['submit'])){ if (isset ($_FILES['new_image'])){ $imagename = $_FILES['new_image']['name']; $source = $_FILES['new_image']['tmp_name']; $target = "temporary_images/".$imagename; move_uploaded_file($source, $target); $imagepath = $imagename; $save = "temporary_images/" . $imagepath; //This is the new file you saving $file = "temporary_images/" . $imagepath; //This is the original file list($width, $height) = getimagesize($file) ; $modwidth = 350; $modheight = 100; $tn = imagecreatetruecolor($modwidth, $modheight) ; $image = imagecreatefromjpeg($file) ; imagecopyresampled($tn, $image, 0, 0, 0, 0, $modwidth, $modheight, $width, $height) ; imagejpeg($tn, $save, 100) ; $save = "temporary_images/sml_" . $imagepath; //This is the new file you saving $file = "temporary_images/" . $imagepath; //This is the original file list($width, $height) = getimagesize($file) ; $modwidth = 80; $modheight = 100; $tn = imagecreatetruecolor($modwidth, $modheight) ; $image = imagecreatefromjpeg($file) ; imagecopyresampled($tn, $image, 0, 0, 0, 0, $modwidth, $modheight, $width, $height) ; imagejpeg($tn, $save, 100) ; echo "Large image: &lt;img src='temporary_images/".$imagepath."'&gt;&lt;br&gt;"; echo "$imagepath" } } </code></pre> <p>And this is my form</p> <pre><code>&lt;form&gt; &lt;input name="animeinput" id="animeinput" size="20" class="textbox"&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/1850724/getting-user-input-from-win32-c-wparam-casted-as-int 0 Getting user input from Win32 C++. WPARAM casted as int? Chris 2009-12-05T01:19:28Z 2009-12-06T18:29:48Z <p>I'm working on a pre-existing codebase and I'm looking to have the user type any 1-2 digits followed by the enter key at any time during the code being run and pass that number to a function. Currently, user input is handled like so:</p> <pre><code>LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { int wmId, wmEvent; switch (message) { case WM_KEYDOWN: Engine::GetInstance()-&gt;GetInput()-&gt;GetKeyboard()-&gt;SetKeyPressed(static_cast&lt;int&gt;(wParam)); break; //snip </code></pre> <p>Now, I'm not sure of a few things,</p> <ul> <li><p>a) Why would the keypressed be passed as an integer rather than a character? </p></li> <li><p>b) What would be the result of "F1" being sent in this case aaand</p></li> <li><p>c) How can I use this to read in a 1-2 digit number and pass that only when enter is pressed?</p></li> </ul> http://stackoverflow.com/questions/1853544/copying-input-file-value-to-input-text-with-click-in-jquery 0 Copying INPUT FILE value to INPUT TEXT with click in jQuery Brian Ojeda 2009-12-05T21:31:15Z 2009-12-06T00:51:39Z <p>I would like to copy the value of a input:file to input:text. I can do it with plan JavaScript but I will like to know how to do it with jQuery.</p> <p>----JavaScript</p> <pre><code>// This what the script would look like with plain JavaScript // It works fine. I just woulld like to know who to do it with jQuery. function fakeScript() { var filepath; filepath = document.adminForm.tumb.value; filepath = filepath.substring(filepath.lastIndexOf('\\')+1, filepath.length); document.adminForm.tumbFake.value = filepath; } </code></pre> http://stackoverflow.com/questions/1847893/js-events-hooking-on-value-change-event-on-text-inputs 0 JS Events: hooking on value change event on text inputs Esteban Feldman 2009-12-04T15:59:04Z 2009-12-04T17:34:50Z <p>Hi all,</p> <p>I have a text input that its content is changed by a script not by user. So I would want to fire an event when the value changes. I can't find a suitable event for that. I event found <a href="http://stackoverflow.com/questions/146916/javascript-events-getting-notified-of-changes-in-an-input-control-value">this on StackOverflow</a> but is not the solution I'm looking for.</p> <p>How to make this work with jQuery and a text input where the value is set like this:</p> <pre><code>myTextControl.value = someValue </code></pre> <p>Here I want to fire an event to see the new value.</p> http://stackoverflow.com/questions/993238/entering-data-into-a-grid 4 Entering data into a grid ChrisW 2009-06-14T17:17:54Z 2009-12-04T03:21:41Z <p>A UI question: is there some consensus on the best (defined as "the one which end-users like best") or least-bad way to implement data entry into a grid?</p> <p>I have a grid, with many rows. The grid's columns contain various types of properties, which the user can enter/edit. The "types" of properties include:</p> <ul> <li>Free text</li> <li>Numbers (numeric digits)</li> <li>Enum value (e.g. one of 'High', 'Medium', and 'Low')</li> <li>Others (e.g. date, duration)</li> </ul> <p>The 'free text' type isn't difficult to design (so I won't ask about that), but what about the next two types?</p> <p><strong>Numeric digits</strong></p> <ul> <li>When using a keyboard to enter a number, would you allow free-text entry, and then run a validate method on blur? Or, monitor each key-press to restrict the data entry to digits only?</li> <li>How do you tell the user (on a grid, not on a form) that the syntax of the data in some column is restricted to numeric-only? What do you do if the user presses a wrong (non-numeric) key?</li> <li>A 'spin' or 'spinner' control is a standard Windows control; is it appropriate to try to use one on a HTML-based grid as well?</li> </ul> <p><strong>Enum values</strong></p> <p>For entering or editing an enum value using the mouse, I guess that popping a little context menu on a mouse click is the thing to do.</p> <ul> <li>An alternative is to use the <code>&lt;select&gt;</code> input control (i.e. a combo box). I guess though that having a whole column-ful of combo boxes isn't as easy to read as having a column of text value (because the combo boxes add extra non-text ink)? What do you think of usually displaying plain text, but replacing that text with a combo box when the field gets the input focus (and then removing the combo box on blur)?</li> <li>Would you also pop that same menu on focus, when the focus changes as a result of the keyboard (i.e. the [Tab] key) instead of a result of the mouse (i.e. a click)? In other words, should tabbing to a field result in a popup menu? Incidentally, the CSS-based popup menus that I've seen respond to the mouse but not to the keyboard (e.g. to the [Up] and [Down] arrow keys). Do you know of any Intellisense-like data entry implementation that can run in a browser?</li> </ul> <p><strong>For example?</strong></p> <p>I'd also be interested in seeing anything you think is an exemplary example. I'm interested in desktop UI and/or in-browser answers.</p> <p><hr></p> <p>Edit: following another question with the [data-entry] tag ("<a href="http://stackoverflow.com/questions/886191">Has anyone used Sigma Grid (Javascript-based editable data grid)?</a>"), I'm looking at the Sigma Grid example. It does a lot of things well IMO (good support for the keyboard and just-in-time selection boxes); but its support for numeric fields may be imperfect, for example if I press 'a' in a numeric cell, then sometimes it pops an alert box to tell me I'm wrong (where maybe a tool-tip would be less intrusive), and/or sometimes it leaves the cell empty (blank), erasing the 'a' and leaving nothing in place.</p> <p><hr></p> <p>Edit in reply to one of of the answers below.</p> <blockquote> <p>Again, however, determine WHAT the primary use of your form is going to be, and optimize for that. Data visualization or analysis has different needs than bulk entry, and satisfying keyboard users is completely different than keyboard+mouse users.</p> </blockquote> <p>I want the same display (i.e. a table/grid) to work well for displaying existing properties, creating new properties, and editing existing properties. I expect dozens of items (i.e. dozens of rows of data), each with only a few columns (e.g. one column of text/item description, plus 1 or more columns for 1 or more associated item properties).</p> <p>Some of the data/properties may be subjective and relative (e.g. two properties for each item are the 'priority' or 'difficulty' of each item, which is especially meaningful only when compared with other items), which is a reason why I want to display all data together on one screen: so that the end-user can compare them.</p> <p>My application is for relatively expert (not novice) computer users, but not data-entry specialists: e.g. the users are software developers, project managers, product managers, QA people, etc., but also to some extent their customers; it's running on an intranet (not public internet), nevertheless easy-and-a-pleasure-to-use and easy-and/or-intuitive-to-learn are both important.</p> <p>Also I don't see why satisfying keyboard users is completely different than keyboard+mouse users: I thought that a single solution could/should support either and/or both. </p>