Questions tagged [edit-control]

9 questions
9
votes
4 answers

Is there an edit control for Delphi that allows path editing?

I have various hierarchical structures and would like to allow navigation around then using an editor like the Microsoft one found in the explorer address bar below. Is there such a Delphi component? (Paid for or free)?
Brian Frost
  • 13,334
  • 11
  • 80
  • 154
1
vote
3 answers

How do I intercept a paste event in an editbox?

How do I intercept a paste event in an editbox, possibly before the value is transferred to the object?
Francesco
1
vote
1 answer

Win32 Edit control mixed case

I'm learning and new to this. I've searched this for a long time and can't find any answer. Every time I type text in an Edit control, it always turned to lowercase, even when using Shift or CapsLock. I did not put any lowercase/uppercase style on…
user5962153
  • 154
  • 2
  • 9
1
vote
1 answer

Edit control cannot get focus or set text after subclassing

I had created an editbox and it was working just fine but after I added a custom WndProc for it, the text "my edit" is not visible and won't take focus when clicked. HWND handle=CreateWindowExW(0,L"Edit",L"my edit",WS_CHILD | WS_VISIBLE | WS_VSCROLL…
shuji
  • 7,369
  • 7
  • 34
  • 49
1
vote
2 answers

Strange behaviour of edit control background color when using WinXp common controls

I am having a strange problem ( well, at least i find it strange =) ). I am writing my own GUI library, which is a wrapper around windows api (and yes, i am aware of WTL and frameworks like MFC =) ). At the current stage i have incapsulated common…
n535
  • 4,983
  • 4
  • 23
  • 28
0
votes
3 answers

wix - fill edit-control with value from registry

Installer is writting SQL Server's name to registry during installing my service. And I created a dialog window with edit control where user will type the servername . Now I want to fill this control with value from registry in ChangeMode. And if…
Nerielle
  • 984
  • 1
  • 11
  • 29
0
votes
0 answers

(MFC Visual C++): How to write inside an edit control box & save to .txt?

I'm trying to create a simple program, if you can even call it that. It has a main dialog and inside an edit box/control thing. picture When I try to debug (I'm using MS Visual Studio 2013) I get the "I-beam" (the flashing text-thing pointer) but I…
0
votes
1 answer

Uncheck value of Liferay Edit control by default for all users

I have hidden liferay edit control by using way like.... $theme.include($body_top_include) #if ($permissionChecker.isOmniadmin()) #dockbar() #end it will hide doc bar for all users except Admin. But I am unable to hide portlet controls icons…
Java
  • 2,451
  • 10
  • 48
  • 85
0
votes
2 answers

Cant retrieve the length of the text in an edit control

INT_PTR CALLBACK ConnectDlg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) { HDC hdc = GetDC(hDlg); int wmId, wmEvent; static HWND hIpControl; static HWND hPort; static LPWSTR lpIPAddress =…
Iowa15
  • 3,027
  • 6
  • 28
  • 35