Search found 3 matches
- Wed May 22, 2019 6:58 am
- Forum: Compiler
- Topic: Disabled or Hidden Control still has Focus
- Replies: 11
- Views: 29255
Re: Disabled or Hidden Control still has Focus
Jack You made button which is disabled this is done with SendMessage () win api . So if you want enable this control you must use again SendMessage () with msg - EM_ENABLEBUTTON or something like that ... also you need handler which work with keyboards vkSPACE to go that work. I don't know how to to...
- Thu Apr 25, 2019 11:43 am
- Forum: Program editor
- Topic: Text Entry Cursor stops blinking
- Replies: 19
- Views: 54742
Re: Text Entry Cursor stops blinking
I have windows 10 on my son computer who use it for games so i must test it.
On my programming computer i use windows 7
and i don't paid to much attention on caret blinking or not .
Most of tim i use scintilla or richedit control but not edit control
(just in some programs ) in another compiler ..
On my programming computer i use windows 7
and i don't paid to much attention on caret blinking or not .
Most of tim i use scintilla or richedit control but not edit control
(just in some programs ) in another compiler ..
- Sun Apr 21, 2019 3:05 pm
- Forum: Program editor
- Topic: Text Entry Cursor stops blinking
- Replies: 19
- Views: 54742
Re: Text Entry Cursor stops blinking
Jack
Edit control is part of standard windows controls and as such belongs into group of
common controls .
comctl32 = LoadLibrary "comctl32.dll"
if your cursor stop blinking that means that something is wrong with edit control attributes or style
or something is wrong with your windows.
Edit control is part of standard windows controls and as such belongs into group of
common controls .
comctl32 = LoadLibrary "comctl32.dll"
if your cursor stop blinking that means that something is wrong with edit control attributes or style
or something is wrong with your windows.