Questions tagged [editbox]

127 questions
48
votes
5 answers

Difference between android:id and android:labelFor?

I wrote a simple layout which has an EditText, but it's showing the following warning message: “No label views point to this text field” While searching I found this and it solved that warning message, but did not get difference between both…
CoDe
  • 11,056
  • 14
  • 90
  • 197
16
votes
3 answers

change the look of Edit Text box in android

I want to change the way the edit text view looks like... I have found a few answers but they somehow don't solve my purpose... Please kindly provide solutions.
Sudhanshu
  • 421
  • 2
  • 6
  • 15
8
votes
1 answer

Can you limit what characters can be typed into a MATLAB GUI editbox?

I want to make an editbox in a MATLAB GUI which will only allow numbers or only allow letters to be typed into it. Is this possible?
dewalla
  • 1,317
  • 8
  • 18
  • 42
7
votes
1 answer

How to set background image for Edit (Delphi)

how can i have a image for Editbox background ?
Kermia
  • 4,171
  • 13
  • 64
  • 105
6
votes
1 answer

User editing cell in TStringGrid

How do you allow a user to edit text in a TStringGrid cell.
user2381189
  • 61
  • 1
  • 1
  • 5
5
votes
2 answers

Dynamically bind an Edit Box in a custom control to a managed bean

I've read a number of excellent posts and articles about dynamically binding fields in a custom control, but they have all assumed a document data source. I want to allow the possibility of a managed bean data source. I tried setting the property…
Gary Forbis
  • 868
  • 1
  • 8
  • 19
5
votes
2 answers

Custom Keyboard is hiding the Edit box in Android

I have designed a custom key board with only numeric keys. I have followed the below link: example Now when i am touching the edit box, key board is appearing. But if i have 10 editboxes, and i am touching the 10th edit box, key board is appeared…
Arindam Mukherjee
  • 2,255
  • 11
  • 48
  • 83
4
votes
2 answers

Edit box in repeat control with default value does not update on delete

I have a Repeat control in which I have a edit box which has passed a default value.There is a Delete button to delete that row. just for test I have used a computed field along with the edit box.Computed field is also passed the same value as edit…
Ajit Hogade
  • 1,072
  • 9
  • 29
4
votes
1 answer

How to hide password text in an editbox for office ribbon development

I am making an application using visual studio and I am making an Excel Addon. I would like to add a username and password field so I am using Editbox to do this however there doesnt seem to be a passwordChar field. What could I use instead or how…
brian4342
  • 1,265
  • 8
  • 33
  • 69
4
votes
2 answers

Add a new line using SetWindowText() Function

I have Created an Edit window. I want one string to be displayed in one line and the other string to be displayed on the other line, but the code I am executing only displays the second string. below is my code snippet: hWndEdit =…
Ayse
  • 2,676
  • 10
  • 36
  • 61
3
votes
4 answers

Currency input without symbol editbox

I'm trying to create a regular expression for my android app so that currency is formatted as in the top answer to this question: public void onTextChanged(CharSequence s, int start, int before, int count) { …
W0lf7
  • 729
  • 1
  • 8
  • 15
3
votes
2 answers

opencv creat an input text box in a GUI and read it

Just wondering if there is any command in OpenCV to create an input "Text box" or"Edit text box" for a GUI in C++? Like name box (to enter a name) PS: I'm using Linux (Ubuntu)
mask
  • 539
  • 1
  • 5
  • 18
3
votes
3 answers

Delphi: How to know when a TEdit changes size?

i need to update items around an edit box when it changes size. TEdit has no OnResize event. An edit box can resize at various times, e.g.: changing width/height in code form scaled for DPI scaling font changed And i'm sure others i don't know…
Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219
3
votes
2 answers

MFC OnEnChange handler function - infinite loop

(I'm using VS++2005) I put edit box control (with ID - ID_edit_box) on my dialog, and associate (with handler wizard) two varibles for it: control (c_editbox) and value (v_editbox) variable. Also I associate handler function OnEnChangeedit_box with…
Melinda
2
votes
1 answer

why SetSel and clear functions are used in editBox in order to write text

Suppose I have an editBox with text "this is edit", and then I want to change that text to "second" I think it is okay to code just like this: m_edit1.SetWindowTextW(_T("this is edit")); m_edit1.SetWindowTextW(_T("second")); but I saw other…
Zrn-dev
  • 99
  • 5
1
2 3
8 9