約5,750件1ページ目

日本語のみで絞り込む

SelectNext. Up to Parent: TWinControl. Delphi. procedure SelectNext ... Moves the input focus from the current child control to the next one in the tab order.

Selects the next tab in a tab set control, scrolling if necessary to bring the selected tab into view. The value of the Direction parameters determines if ...

2011/7/21 -SelectNext selects next sibling child control, ie. you need to call it on your edit's parent: type THackWinControl = class(TWinControl); if ...

You can make your application focus the next control (in the tab order) on your form by using the SelectNext() method. To move to the next control: ...

2016/5/20 -I use the following code in a TEdit and TLabelledEdit OnExit event. Form1.SelectNext(ActiveControl, False,True)

2017/3/26 -We know that, generally, pressing the Tab key moves the input focus to next control and Shift-Tab to previous in the tab order of the form.

This code first checks to see if the Key that was entered was indeed the Enter key (#13), and then calls the SelectNext method of the Form, passing the current ...

I have a Delphi application with multiple tabs available for selection via the UI. When opening the application for the first time TestComplete object...

2018/11/1 -The Set Tab Order Expert has two modes, the first one is simple: It displays a tree view of the currently selected control and allows you to ...

2018/7/25 -I was asked if enter key could be used as a tab key. In Delphi I guess one would use Keypress and check for shift state ....and use SelectNext ...