条件を指定して検索しています。すべての条件を解除する

  • 対象とする言語:日本語
  • ActiveControl. 親: TForm. Delphi. property ActiveControl: TWinControl read FActiveControl write SetActiveControl stored IsForm;. C++. __property ActiveControl; ...

    TScreen.ActiveControl. 親: TScreen. Delphi. property ActiveControl: TWinControl read FActiveControl;. C++. __property Vcl::Controls::TWinControl* ActiveControl ...

    ... Delphi 3 以降では TCustomForm または TCustomFormの継承クラスのインスタンスを ... ActiveControl Property が Nil でないなら、ActiveControl が示すウィンドウ ...

    2014/12/8 -私が試した限りでは、別フォームのActiveControlプロパティも有効な値を返すように見えましたが、注意が必要です。 SplitContainerコントロール上の ...

    2023/3/23 -... ((ActiveControl is TDBGrid) or (ActiveControl is ... ここにあるドキュメントは NIFTY SERVEの Delphi ... 使用者のリスクの範疇でご使用下さい。 Copyright 1996-2002 Delphi ...

    2024/2/19 -... ActiveControl = DBGrid1 then begin if Key = VK_RETURN then begin Key := VK_TAB; end; end; end;. このように実装するとDBGridでのEnterキーがTab ...

    2018/3/25 -フォーカスがあるコントロールとは,親であるフォームの ActiveControl の値がそのコントロールである場合のことです. TScrollBox もマウスホイール ...

    2007/9/16 -☆ListBoxのDrawItem No2 ; procedure TForm1.FormMouseWheelUp(Sender: TObject; Shift: TShiftState; MousePos: TPoint; ; var Handled: Boolean); const ...

    フォームのActiveControlが変わった(フォーム上のコントロール1のフォーカスがコントロール2に移動した)ときにフォーム側で発生するイベントがあったらどなたか ...

    procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char); begin if Key = #13 then begin SelectNext(ActiveControl,True,True); key := #0;