Bug ??? - TComboBoxEx - BCB6



  • Hi,

    Ich teste neue Komponente TComboBoxEx

    in design time
    Enabled = false

    in run time
    ComboEx ist nicht gray, aber ist disabled

    in code
    ComboEx->Enabled = false;
    ist alles richtig

    Ich mochte andere Cursor ansetzen
    ComboEx->Cursor = crHandPoint;
    geht nich...

    nur mit diese Code ist alles richtig

    HWND TmpHandle = GetWindow(ComboEx->Handle, GW_CHILD);
     if (IsWindow(TmpHandle))
      SetClassLong(TmpHandle, GCL_HCURSOR, (LONG)Screen->Cursors[crHandPoint]);
    

    Ist das Bug TComboBoxEx ??? Ich habe keine Dokumentation gefunden 😞


Anmelden zum Antworten