Jump to content


mhu.nl

Member Since 08 Jul 2007
Offline Last Active Jul 09 2007 11:26 PM
-----

Posts I've Made

In Topic: TNxComboBox

09 July 2007 - 11:19 PM

I had the same problem in XP. I was able to fix it be resetting the VerticalAlignment property in the Object Inspector. The value for this property was not correctly stored in (or read from) the DFM.

In Topic: [NxCombobox] Cursor Bug

09 July 2007 - 11:07 PM

Easy fix for the cursor bug:

In NxEdit.pas replace:

CODE
procedure TNxPopupEdit.WMSetFocus(var Message: TWMSetFocus);
begin
inherited;
end;


with:

CODE
procedure TNxPopupEdit.WMSetFocus(var Message: TWMSetFocus);
begin
inherited;
if (FStyle = dsDropDownList) then DestroyCaret; // mhu: don't show the caret in selection lists
Refresh; // mhu: make sure focusrect is shown
end;