Questions tagged [editbox]
127 questions
0
votes
1 answer
Make EditBoxes not related to each other
I want to make each EditText separated from the others.
But when I select the first EditText it shows the next EditText instead of submit or confirm then goes to the next EditText and so on.
Here is the xml code.

Android Admirer
- 2,310
- 2
- 17
- 38
0
votes
1 answer
number of text box equivalent to for loop in android
i want to generate number of editbox according to the for loop, with a button that has to invoke method which will process the userinput data into editbox.
as far as i know i can not use the alert dialogue boxes as they are async and will not wait…

Shahensha Khan
- 265
- 1
- 19
0
votes
1 answer
How directory searching in Windows run works?
Here is my requirement.
I am giving one text box, users have to type the folder path.
To help the users, when they write the first folder structure say "C:\" into text box,I want to display all the folders available in that path (same way how we…

AKJ
- 65
- 1
- 6
0
votes
1 answer
how to a display a bitmap in a editbox in android
i have two bitmap images ..and i need to merge the bitmaps with precise positioning of one bitmap over other and get a resultant bitmap (which is combination of both)
and the resultant bitmap is a font character and i want that bitmap to be…

visista
- 246
- 4
- 15
0
votes
2 answers
Only specific numbers in edit box
I would like that user could write only numbers from 1 to 49 in edit box. I know how to exclude letters and has possibility to put only numbers but I can't limit it to specific numbers (e.g from 1 to 49 - like in lottery game).
I added KeyDown event…

astack
- 161
- 4
- 16
0
votes
1 answer
BringWindowToTop is not working in the ActiveX control
I have designed activeX control which consist of one editbox and one combobox.
I am trying to place the editbox over combobox so that whenever the user select any item from the combobox it should sit to the editbox. So my editbox should coveringup…

izhad
- 19
- 3
0
votes
0 answers
Auto clear default text in a TEdit
I have a few TEdits on my form. When created they have default text in a gray font color. (e.g. "Surname" and "Name") See example below:
Their on click events causes the default text to be cleared and their font color to be set to black.
My…

Craig
- 548
- 9
- 24
0
votes
1 answer
I want to add my editbox data to a local table?
How can I add a data to a local table from editbox. I have done many changes to my code onButton click.
I have added this code
Data.execute("insert into Sample_Table values('Name')",Pages.Page1.EditBox1.text);
alert(Pages.Page1.EditBox1.text);…

Manthan Shah
- 77
- 6
0
votes
1 answer
How would you open a Dialog when an edit box is selected? MFC 2005
I would like to be able to create an onscreen keyboard to popup whenever an edit field is selected. I am using MFC Visual studio 2005 (C++ based).
Below is my code so far:
void CTestHarnessDlg::OnEnChangeEdit3()
{
CKeyboard Dlg;
…

user3685687
- 63
- 2
- 8
0
votes
1 answer
What is a way to fill a multiline editbox with line of text
What im after is a greyed out editbox you see at the bottom of some programs.
A list of results.
Im having problems having the text properly formatted.
so starting from scratch, how is it usually done?
The filling of the half page sized editbox with…

Smoka
- 71
- 5
0
votes
1 answer
Change Masked Text into Plaintext from DBEdit
I have a DBEdit control, connnected to an ADO record set displaying a floating point number. This number has been masked as a currency through the field editor of the record set. This causes a currency sign to be displayed at the front of the…

James Paterson
- 2,652
- 3
- 27
- 40
0
votes
2 answers
Changing displayed string in MATLAB GUI edit box by changing value in another edit box
Right now, I am working on a GUI that plots graphs based on user-input data. The user enters numbers using edit boxes and from there the plot is generated.
I have two values, period and frequency, which mathematically I know are interdependent…

Jehmil
- 1
- 1
0
votes
1 answer
How to create watermark in edit box in MFC VC++
I have created an Edit box accepting password but I need to display a watermark or whatever it calls displaying "password" as default just like when we enter our password in windows 8 startup.
thanks

Pallavi Rai
- 13
- 4
0
votes
2 answers
Underline text inside Editbox
As I enter text in editText it should automatically underline the text I entered. I need like as I continue to enter text in editText it draw like in background.
Can someone help me.

LuminiousAndroid
- 1,557
- 4
- 18
- 28
0
votes
1 answer
How to get the number value from preferences editbox in android
I have a edit box in my preference where the user can type a number to increment a counter by but I am not sure how to get this value and use it in my main class.
in my preference I have;
android:defaultValue="1"
…
user4358262