Tagged Questions
The cedit tag has no wiki summary.
4
votes
3answers
2k views
Handling Return key in CEdit control
How to handle return key (VK_RETURN) in a CEdit control? CEdit is parented to a CDialog.
2
votes
1answer
58 views
Using derived Class from CEdit in my DIalog
I'm doing an application using MFC. I just made a class that is derived from CEdit so I could intercept OnChar() and do data validation. How do I substitute the edit control in my application with the ...
2
votes
2answers
185 views
“Unlimited” CEdit text without ES_AutoHScroll
I'm having undesirable reflexes with ES_AUTOHSCROLL Set.
What I'm trying to do is create an Edit that resizes with the text in it. However I hit a problem whenever the user types past the end of the ...
2
votes
1answer
448 views
changing font color of text in a disabled CEdit control
I want to change the font color of text in a disabled CEdit control which is currently system gray.
As I use a gray background, I wish to change the font color of text ( currently set to rgb value ...
1
vote
2answers
280 views
Visual C++ CEdit Control - Why is the Insertion Point changed by SetWindowText()
The following snippet is from the OnChange() handler of a multiline CEdit control, which has "WantReturn" set.
void DLG::OnChangeEditPrepareTape()
{
CString ss;
std::vector<char> ...
1
vote
1answer
287 views
CEdit, WM_PASTE
let's say I've got a handler of the wm_paste message in a CEdit descendant:
LRESULT CMyEdit::OnPaste(WPARAM wParam, LPARAM lParam)
{
//do some processing
return 0;
}
and let's say that in some ...
1
vote
1answer
202 views
ON_EN_KILLFOCUS called multiple times
I am using a CEdit control. And I have assigned an event handler for ON_EN_KILLFOCUS message. It gets called correctly. But the problem is that, when ever, I close the dialog box, this event handler ...
1
vote
1answer
279 views
CEdit selects everything when getting focus
When I move to a CEdit control on my dialog using the tab key or the arrow keys all the text in the control is selected. This behaviour is causing me problems and I would prefer it if the control just ...
1
vote
3answers
727 views
MFC CEdit Ctrl Question
I have a CEdit control that I want to be able to take time input from. Now I want this input to come in the form hh:mm:ss. Currently I am using a separate CEdit control for hour, mins, & secs. I ...
1
vote
3answers
620 views
validating CEdit without subclassing
Is there any way to validate the contents of a CEdit box without subclassing?
I want to check for invalid filename characters in a CEdit box and not allow the user to input it at all (keypress should ...
1
vote
3answers
7k views
CEdit control maximum length? (in characters it can display)
What is the maximum length for the text string contained in a CEdit control in MFC? I get a beep when trying to add a character after the character 30001 is this documented anywhere? Can I display ...
0
votes
1answer
45 views
CMFCPropertyGridProperty and CEdit text auto select
What I have read here (When the user selects an edit control, .... and highlights its text by using reverse video) and if I understand it right, CEdit should highlight (I hope it's the same as select) ...
0
votes
2answers
72 views
MFC how to automatically select all text in CEdit control
I have a CMFCToolBarComboBoxButton on a CMFCToolBar. I want that whenever the CMFCToolBarComboBoxButton gets the focus its entire text will be selected.
What is the most elegant way to implement it?
...
0
votes
1answer
79 views
How could a textfield respond on <Enter>
I have some problems to respond on a event like "Enter". I have a dialogbox with a CEdit field, where the user could enter some stuff.
How could i respond, if the user press "Enter" in the textfield?
...
0
votes
1answer
65 views
How can i modify the context menu of a CEdit control?
Before windows7 the solution was easy. Just add your own menu and write your own "Undo,Redo,Cut,Copy,Paste,Delete,Select All" menu items. But now this is not possible anymore because the menu has ...
0
votes
1answer
317 views
CEdit Text Retrieval in mfc
I am using CEdit with the property of Multiline.My objective is to retrieve the individual line and place it in my CStringArray.
While retrieving the line using GetLine , I have to know the string ...
0
votes
1answer
64 views
How to manipulate the contents of CEdit?
I have a situation with edit control and I need some guidance. The text editor functions normally in most cases but in other cases, depending on the last few characters before typing and based on the ...
0
votes
0answers
104 views
CEdit password style and sendmessage
I am doing a SendMessage from exe A to exe B. In exe B's WndProc I receive this message and display a dialog using DoModal. This dialog has CEdit field with password style set to true. After I dismiss ...
0
votes
2answers
125 views
DDV_MinMaxUInt : Custom Validation Message
I am using MFC, to develop a Mobile App. For one of the CEdit controls, in the dialog box, I declared a variable as long int as follows.
DDV_MinMaxUInt(pDX, m_txtCurrentValue, 1, 2000);
So ...
0
votes
2answers
506 views
How to change the text color in a disabled edit box using MFC?
I have a dialog in which the edit box is disabled but the text should be displayed in red instead of the default grey. I tried the following:
void CMyEdit::OnEnable(BOOL bEnable)
{
...
0
votes
1answer
662 views
Write formatted text(printf style) to a MFC CEdit control, which would display the formatted text in a EditControl?
I need to display text along with values of variables in a CEdit controlled Edit Control Box. How do I do it ? Currently I'm using SetWindowText(), but that only takes a string...how do I get a ...
0
votes
1answer
164 views
Placing a image inside an CEdit control in Win32
I'm trying to achieve an effect where there's a visible logo inside an edit control and the logo becomes hidden when the user places the focus on the edit control.
What's the best way to approach ...
0
votes
2answers
676 views
How to get CEdit to scroll properly?
I have a CEdit control that's used to display a diagnostics output.
Sometimes the data overflows the screen size, so naturally I set the Vertical Scroll property to true (MFC dialog editor).
But ...
0
votes
3answers
4k views
CEdit numeric validation event C++ MFC
I have a CEdit text box which is a part of a property pane and only allows numeric values (positive integers). The box works fine when people enter non-numeric values, but when they delete the value ...
0
votes
2answers
2k views
MFC: Changing the colour of CEdit
Guys, can someone give me a brief run through of how to change the background colour of a CEdit control at runtime? I want to be able to change the background to red if the field is zero length and ...