Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
108 views

Why my edit control looks odd in my win32 c++ application using no MFC?

I have this program where i created a window and inside that i added an edit control using plain C (no MFC or dialogs), the edit control creation code is as hWnd=::CreateWindowExA(NULL, //no ...
1
vote
1answer
58 views

How do I make the text in an Edit Control and an Rich Control so I cant select it?

I have Edit Controls and Rich Edit controls in my application that are read-only. But on top of that, I want to make it so I can't select the text or even do anything with it, only display. I did not ...
1
vote
2answers
172 views

Block characters in Edit Control using MFC (Example for only floats)

I'm trying to block certain types of characters from being inserted into my Edit Control by overwriting OnChar and OnKeydown. I'm trying to block more than one point '.' and anything that is not a ...
1
vote
1answer
165 views

Windows 7 edit control, vertical scroll does not work

I have an application that compiles ok (mingw) and runs ok, however the edit control that is created has scroll bars but the vertical scroll bar doesn't do anything. The same executable works fine on ...
1
vote
1answer
620 views

how to restrict copy paste in a Textbox, in MFC?

I am developing a small application in MFC... there is a little problem..hope you guys would help me regarding this...Here we go..the problem is...I have 6 little edit control(Text box) in which I ...
1
vote
3answers
678 views

How to move to the next control inside a frame?

In one form of my application, we add sets of data by adding frames to the form. For each frame, we want to be able to move from one edit (Dev Express Editors) control to the next by pressing the ...
1
vote
5answers
1k views

MFC Edit Box - Multiple Characters per Keystroke?

I am trying to create a simple dialog in MFC using Visual C++. My problem is that when I get the dialog on the screen and try to type in an Edit Box field, if I type the letter 'a' once, it appears ...
0
votes
2answers
32 views

How to change the position where next character will be place in the Edit Control from MFC?

I have piece of code that erases the last character of a string and then set the text in the Edit Control to that new string. The problem is that, afterwards, the position of the character that will ...
0
votes
0answers
141 views

Set background color of multiline WinAPI Edit Control

I've got multiline edit control created by CreateWindowEx() with flags : WS_CHILDWINDOW | WS_CLIPCHILDREN | WS_CLIPSIBLINGS | ES_LEFT | ES_AUTOHSCROLL | ES_AUTOVSCROLL | ES_MULTILINE | WS_VSCROLL I ...
0
votes
3answers
232 views

Paint problem when handling WM_CTLCOLOREDIT

I have an non read only edit control for which I need to change colors so I handle WM_CTLCOLOREDIT. It works well when I am typing continuously but the problem is when I hit backspace or delete or ...
0
votes
2answers
131 views

How to use EM_SETHANDLE on edit control?

I am unable to figure out how to properly use the EM_SETHANDLE mechanism to set the text for an edit control. Get and Set window text will be too slow for my application. From the documentation I ...
0
votes
0answers
203 views

Disabling an edit control's popup menu Win32 API

I want to disable the context menu of an edit control so i can replace it with a custom popup.Is that possible ?
0
votes
3answers
328 views

How to turn off beeping when pressing ENTER on a single-line EDIT control under Windows CE?

I'm developing an application targeted to a POCKET PC 2003 (Windows CE 4.2) device using C++ and native WINAPI (i.e. no MFC or the like). In it I have a single-line edit control which part of the main ...
0
votes
1answer
264 views

Three questions about editbox?

I have three questions about editbox control in WINAPI (i can't find information on msdn about this) 1. How to disable moving typeing cursor with mouse, arrows, backspace in editbox ? I want to make ...
0
votes
0answers
126 views

Accessing a dialog from Another dialog MFC

I want to open a separate dialog box when I cllick on a button on my main dialog. I used separateDialog.DoModal() to do it. It open successfully but when I try to add data to a edit control (text box) ...
0
votes
1answer
661 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
200 views

Win32: edit control selection in dialog-based app

I have a dialog-based app with an edit-control in it. When I minimize / restore the app, everything's ok. But when I hide all the windows with holding down that Windows-logo-key and pressing "D" and ...
0
votes
3answers
266 views

Get the line number in Edit control

how can you get the current line number in a multi-line edit control?
0
votes
1answer
505 views

How to limit number of characters typed in a textbox in MFC?

I have 2 questions...my 1st question is how do I limit the number of character typed in a textbox in MFC..say if I want the user to type only 4 characters..the text box should take only 4 ...
0
votes
1answer
599 views

Custom shaped text box/edit control in .net?

I'm looking for a way to display and edit text inside a custom shaped box (e.g. a circle.) The text needs to use as much of the allowed space as possible, so just positioning an edit box inside the ...
0
votes
4answers
3k views

EditingControlShowing events firing multiple times

I have a DGV in VB.Net 2008 connected to an Access DB table. The DGV is not Read Only, but is full of read-only columns except for one, which contains a combo box. The combo box allows the user to ...