Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
66 views

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?
2
votes
1answer
349 views

Android Floating EditBox

I have an OptionMenu which has single option in it named "Search". When the search option is clicked, it should dynamically add a EditText at the top of Activity window like it has in WebView (browser ...
2
votes
1answer
634 views

How to set background image for Edit (Delphi)

how can i have a image for Editbox background ?
1
vote
1answer
228 views

How to put text from editbox into a website login fields

hey guys what I am trying to do is have two edit boxes for a user to sign into a website. I do not want to use a webview. my question is how can i get the inputted values from the editbox and put it ...
1
vote
1answer
350 views

How do I set focus to CEdit in child dialog that is inside TabCtrl?

I have a dialog box (CDialog) with owner-drawn CTabCtrl in it. Tabs content are child dialogs (one for each tab). There is an CEdit in each tab. When the user clicks a tab, I'm hiding all child ...
1
vote
2answers
498 views

change the look of Edit Text box in android

i want to change the way the edit text box looks like .. i found a few answers but they somehow dont solve my p[urpose .. kindly provide inputs
1
vote
1answer
317 views

Paste multi-line text into single-line Edit Box control

My app uses standard single-line Edit Box controls. Is there any way to accept a multi-line "paste", discarding carriage return / linefeeds? Notes I don't want to use multi-line controls My app is ...
1
vote
1answer
542 views

android exitbox edge touch lisoner

Is there any way to add the x-graphics in the android Editbox like the of iPhone So that by clicking on that x graphic it can clear all the values in the Editbox Is there any way to listen ...
1
vote
1answer
816 views

How to filter a listview with and edit box - Android

I am making a Glossary of legal terms and I would like to be able to narrow the results in the list by typing in an edit box, I have tried finding a solution but none of them have worked for me.
1
vote
2answers
419 views

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 full fill ...
1
vote
2answers
117 views

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 ...
1
vote
3answers
496 views

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 ...
1
vote
1answer
629 views

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 ...
0
votes
4answers
196 views

What is the best way to format an edit box that represents a numeric value?

In my c# program I have a very simple DevExpress edit box that represents a numeric value. What I would like to do is to add a restriction on the number of decimals in such a way that: Users ...
0
votes
1answer
158 views

EditBox character limitation in android

In my app i have placed some EditBoxes . When the user types some data i want to stop him from entering too much of characters. i.e When the number of characters exceed 80, the characters typed next ...
0
votes
2answers
94 views

Is there anything like GetDlgItemInt but for a Window that has been created? Win32 Api

Using C++ Win32 API, I've created a window ( CreateWindow() ) instead of a dialogue box. Are there any commands similar to "GetDlgItemInt" or "SetDlgItemInt" that is used for getting and setting data ...
0
votes
1answer
296 views

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 ...
0
votes
1answer
197 views

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 ...
0
votes
2answers
114 views

CEditBox or CListBox which one is better for big amout of logging data

This always was a big question for me that for a very big amount of logs (like 100,000 line log) which one is better in performance, scrolling,... also consider formatting the text with color is a ...
-1
votes
2answers
112 views

How to add code for editText2 box?

Please look at my code. As you see it has one editText and what it does- it saves text in editText .I found this code online. It works perfectly with my layout. But I added another editText box, that ...