掲示板システム
ホーム
アクセス解析
カテゴリ
ログアウト
ComboBoxの動作がおかしいです (ID:43908)
名前
ホームページ(ブログ、Twitterなど)のURL (省略可)
本文
> なのでここで小細工するしかないかも type TComboBox = class(StdCtrls.TComboBox) private procedure WMSize(var Msg: TWMSize); message WM_SIZE; end; implementation procedure TComboBox.WMSize(var Msg: TWMSize); var SS: Integer; SL: Integer; ST: string; begin Self.Items.BeginUpdate; try SS := Self.SelStart; SL := Self.SelLength; ST := Self.Text; inherited; Self.Text := ST; SS := Self.SelStart; SL := Self.SelLength; finally Self.Items.EndUpdate; end; end; Delphi だとこんな感じですかね。
←解決時は質問者本人がここをチェックしてください。
更新する
戻る
掲示板システム
Copyright 2021 Takeshi Okamoto All Rights Reserved.