Questions tagged [editbox]

127 questions
0
votes
1 answer

Win32 textbox control alt keypress message

I need to hookup alt+alphanumberic keypress inside a child window control. I have written this program to test it's functionality. But it seems it does not response to keystrokes like ALT+X , ALT+X which are necessary for my application(keyboard…
sandun dhammika
  • 881
  • 3
  • 12
  • 31
0
votes
1 answer

ADOtable cells update

Hi here is my problem: I have EditBox which shows some variable. on the same form I have a ComboBox. Both are bound to an ADOTable, however when I click and change ComboBox..the textBox goes blank. How can I update the record without using Post once…
Sardukar
  • 247
  • 6
  • 16
0
votes
1 answer

Android - Background of EditBox

It's possible make the same background on edit box in all Android OS? I want the background of editbox in a device with OS 2.2 be the same background in a device with OS 4.0. I want a background with a bottom line like OS 4.0. It is possible do…
David Fortunato
  • 769
  • 1
  • 6
  • 19
0
votes
2 answers

Android Edit box focus

NewBie Androider here. I am writing a code in which user enters only one ALPHABET in one edit box then focus moves to other one. If it is not Alphabet then cursor will remain at edit box 1 If user delete the character then cursor remain at the…
user1544460
  • 173
  • 7
  • 18
0
votes
1 answer

flicker issue but don't want to use CLIPCHILDREN style

I have a toolbar, on which there are some static child control which display text (e.g: "Find"... ). There are 2 edit control on this toolrbar. When I resize the main window, I got flicker on some part of the toolbar. So I tried to use…
user565739
  • 1,302
  • 4
  • 23
  • 46
0
votes
2 answers

How to dynamically add edit boxes in MATLAB GUI?

I use the inputdlg function to display a dialog box in which the user writes in several edit boxes. The number of boxes depends on the value of a variable, so I can have 3 ou 11 boxes but I figured out how to update the number of boxes in the dialog…
Coriolis
  • 396
  • 3
  • 10
0
votes
1 answer

Edit Box with Submit Button

How can i add a submit button to an Edit Box in MFC(VC++). Similar to "Search Edit Box" in Windows Explorer or File Open Dialog in MS Office Applications. Please suggest
Rajasekhar
  • 19
  • 3
0
votes
1 answer

Cannot select editbox in emulator/real device any more

I have a tabhost with 4 tabs. Each tab has several editboxes. On real 2.1 device and in emulator I can select any editbox and insert values into them. But in 2.3 emulator and real device - only editboxes on 4th tab are selectable... tab 1 -…
user1390456
  • 96
  • 1
  • 8
0
votes
2 answers

How to check empty EditText before calculate

In my project I have a button that calculate at at least 2 EditBox, but when I leave it empty and calculate I got crash app: java.lang.NumberFormatException: Invalid double: "" at java.lang.StringToReal.invalidReal(StringToReal.java:63) at…
0
votes
1 answer

WebBrowser with limited tags support in C#

I need a editBox in c# that only shows and edits formatted texts(bolded,colored,...) and supports RTL and I can to get Html code from inputed text. So used WebBrowser and enabled designMod on it. it's very good but it also shows unwanted contents…
Ali.M
  • 311
  • 6
  • 24
-1
votes
2 answers

Assigning values to variables in mfc forms controls

I am using MFC visual studio 2013, i have a form with two edit boxes, X and Y . I want the sum X and Y to display in static text box on the form when I click DISPLAY BUTTON. X + Y = Z X edit box1 Y edit box2 Z static text box, to display…
-1
votes
2 answers

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 I called editText2 and can not figure out how to…
Andy
  • 1
  • 2
-1
votes
1 answer

nodeclipse editbox plugin - unable to install

I have updated eclipse to 4.10 (2018-12/R), the cpp package Running under ubuntu 18.04. I tried to add nodeclipse editbox using the marketplace, but it cannot find the plugin. Then tried the option help-install New Software, adding the repository…
LittleFish
  • 61
  • 1
  • 6
-1
votes
5 answers

How do i enable my button after my EditText have been filed with values? My Button stays disabled even after i have filed my EditText

Here is my code hope it is clear enough With this code i am trying to use the isEnabled function to check if my EditText fields have values, if they don't have values the submit Button must be disabled else if they all have values the button must…
Nhlanhla
  • 3
  • 1
  • 6
-1
votes
1 answer

How do I display a label in an edit box, but switch to password-entry mode when it receives focus?

I use Delphi 10 and Windows 10. The following code makes caret and selection disappear in Edit1. procedure TForm1.Edit1Enter(Sender: TObject); begin Edit1.PasswordChar := '*'; end; After the focus moves to the other control and in onClick it…
JO SeongGng
  • 567
  • 3
  • 18
1 2 3
8
9