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