Questions tagged [editbox]
127 questions
1
vote
2 answers
How to set a EditText in a certain column of a TableLayout?
I have a TableLayout on one Android Activity UI. It has two columns.
Now I need to add a new row, and put an EditText box in second column of that new row. And also, I want that EditText to fill the whole cell. I have some code like this:
TableRow…

Nick
- 11
- 2
1
vote
0 answers
MATLAB GUI) Initial Tab selection
I am making a simple GUI that reads some parameters in EditBox and do something.
I have a lot of EditBoxs and it is convenient to move by Tab Button between boxes.
I want the text in the next box to be initially selected by Tab Button so that I…

ben Heo
- 141
- 2
- 12
1
vote
1 answer
win32 edit box displaying in new lines
My problem is with simple edit box. It is defined this way:
hEditIn=CreateWindowEx(WS_EX_CLIENTEDGE,
L"EDIT",
L"",
WS_CHILD|WS_VISIBLE|ES_MULTILINE|
ES_AUTOVSCROLL|ES_AUTOHSCROLL,
50,
…

ak44
- 11
- 1
- 3
1
vote
2 answers
What is the drupal way for wysiwyg reply edit box?
I'm making a forum and I'm using drupal6 advance-forum module.
I browsed all the admin sections and I still cannot figure it out
how to put a wysiwyg edit toolbar on the reply form.
It shows in the admin section when I create a topic but not outside…
user171910
1
vote
3 answers
Textwatcher doesn't recognize space
I am trying to filter a gridview and for that I am entering the data in an editbox. It works great except that when I insert a space character in editbox it somehow doesn't recognize it and the result set comes empty. Please help
Here is my editbox…

Zonera
- 178
- 9
1
vote
1 answer
Subclassing an edit control from a user defined class/pointer-to-member-function
I think I've fallen in the same trap as many before me where I try to impose a nice OO methodology on win32 API programming. No MFC, no AFX, I'm not even using VC++, I'm using C::B with gcc.
I think what I'm trying to do is impossible, but since…

Peter
- 13
- 3
1
vote
1 answer
Retain Values from edit boxes android code
I have this code, I want to retain my value of the editbox from the first input after change or start of new activity.
this what happens in this code:
editbox1 = 1 > start new activity > back to recent activity > editbox1 = null
I need this to…

hybrid_18
- 67
- 4
- 11
1
vote
2 answers
How can I save the edit box data in the GUI Guide?
I am making a GUI in which there is a multi-line edit box.
the user will have to input the 3 x-y coordinates in this edit box at a time:
[345.567 123.123]
[390.567 178.098]
[378.000 125.987]
by clicking the push button I want these coordinates to…

Rabs
- 11
- 1
- 2
1
vote
1 answer
Editbox with background color not showing text
I have created edit box using Win32 C++. I have subclassed it and overridden OnPaint menthod in which I am filling it with some background color.
Now if I enter some text I am not able to see any text but I can see cursor moving.
If I dont put any…

anand
- 11,071
- 28
- 101
- 159
0
votes
1 answer
Text field with spinner control in Unity
I want to implement an Edit box with a spinner control in Unity.
Something like this:
I couldn't find an off-the-shelf component for this. I've also looked up the Unity Forums and haven't found anything relevant. Does anyone know how I could do…

user3009098
- 93
- 1
- 6
0
votes
1 answer
Quasar2 Vue3 q-popup-edit @save event never called
I have the following template:

Kok How Teh
- 3,298
- 6
- 47
- 85
0
votes
1 answer
0
votes
1 answer
Why cut action doesn't work on EditBox in c#/xaml?
I've got a strange issue. Ctrl+x (only cut part. copy and paste works fine) doesn't work (on my computer) on EditBox in c#/xaml. I tried it with a fresh new xaml project with only 2 EditBox in it. I generate an exe and send it to people in my…

kirua33
- 1
- 1
0
votes
1 answer
How can I popup an edit box (or another modal that can type something) in MFC app when I click a button
I want to popup an edit box or another modal when I click a button. I can type something in this box and when I close it, I will receive the data I've just typed. How can I do?

Noob
- 23
- 3
0
votes
1 answer
Caret position in EditBox after change in text length
I have an EditBox in a MFC-dialog. The user is supposed to enter a number. I'm trying to automatically add separators to the number while the user is inputting it:
When the number is more than 3 digits long, a separator is added between the hundreds…

Estelyen
- 55
- 1
- 7