Input is usually related to the user input, i.e. to the data that user effectively supply to the running application. In many systems this input is considered to be potentially dangerous and needs to be sanitized.
0
votes
0answers
6 views
Toggeling Touch by external keyboard
I am building a firmware for visually disabled people. I have to disable touch screen as and when the external key board is connected. And toggle it with Alt + T . For this I have a static volatile ...
-4
votes
1answer
21 views
how to create input text type for detect email
I'm new in jQuery and I want create one input text that take email address in self and check it.
if don't exist @ in enter word or don't exist .com in last word show one alert error. but I don't know ...
0
votes
3answers
37 views
Styling checkboxes with jQuery
I need to stylize some checkboxes through jquery, but I don't want to use plugins. I just need a simple jQuery code.
I thought to use a simple list with css style.
<ul id="list">
<li ...
0
votes
1answer
33 views
how to check type first letter from enter word [duplicate]
I create one input text and I check first letter from enter any word that if this word was english direction to be ltr or if this word was arabic direction to be rtl.
I dont know how understand ...
1
vote
3answers
27 views
how to get first value from the word entered in the input (only first letter)
I know that this question is so noob . but I want to know that how to get the first letter from the entered word in an input text.
I don't know about it .but please guide me about that .
-1
votes
0answers
31 views
FORTRAN input from mouse
What is the FORTRAN input statement (e.g., READ statement, or OPEN statement) to accept input from a mouse? For example, in Windows explorer, it is possible to right-click on a file and then select a ...
0
votes
0answers
9 views
can you use tables inside of form to control field placement
I am trying to reproduce a form that was laid out as blocks of questions. Similar to medical intake sheet. Can I use a table to control field placements within each sized cell? Any samples?
-4
votes
2answers
60 views
What happen if an input stream is sent to an output stream? [closed]
What happen if an input stream is sent to an output stream?
Is it possible
Can you help me with an example in c + +
1
vote
2answers
39 views
Python: how to save a list with objects in a file?
im trying to create diferent objects (using Clases and objects) and saving them in a file to edit or retrive them later. However this how it looks.
GlobalCategories=[]
GlobalContent=[]
def ...
1
vote
3answers
38 views
Python - assigning values to n variables in a for loop
Let's assume that I wanna collect n lists as an input.
What I used to do was:
l=[]
for i in range(n):
row=map(int,raw_input().split())
l.append(row)
And then I used to access those list by ...
1
vote
1answer
39 views
Value from input in quotes javascript
If I have an code like this, with quotes and authors, how can I get two input type="text" boxes where I can write for example two names and then display the name into the quotes in place of "(random ...
0
votes
1answer
29 views
Input Button with a default
I have a workbook that has 3 work sheets.
Keith’s April Monthly Budget
web Links
CT Scan
I created a Button go to a web site to pay a bill
This is it
Sub Macro8()
'
' Macro8 Macro
'
'
...
0
votes
2answers
52 views
Add text boxes to HTML and use with JQuery
This may be a repeat question, but I am very new to JQuery and the answers I've found are not helping. Is it possible to add HTML containing an input field with JQuery and then later used that input ...
0
votes
1answer
8 views
Can't specify dojox.mobile.TextBox type as password programmatically
I'm trying to build a login widget for our system, so I'm building the inputs programmatically. The Username input is easy, but I'm having issues with the input rendering with the correct type. When ...
0
votes
0answers
44 views
Looping JFrame window
I am writing an encryption program that lets the user enter a message and have it coded into a matrix, or have a set of matrices decoded. I have finished the core, and decided it would be more user ...