J
jomee
Unregistered / Unconfirmed
GUEST, unregistred user!
我想通过:
if (key = VK_Down) or (key = 13) then
SelectNext(ActiveControl, True, True);
if key = VK_Up then
SelectNext(ActiveControl, False, True);
Key := 0;
这段代码来依次在edit上循环。可是焦点却先从GroupBox1里的edit.跳到GroupBox3的edit.
我要求是从GroupBox1到GroupBox2,
每个edit的TabOrder已经设置了。请指教。
if (key = VK_Down) or (key = 13) then
SelectNext(ActiveControl, True, True);
if key = VK_Up then
SelectNext(ActiveControl, False, True);
Key := 0;
这段代码来依次在edit上循环。可是焦点却先从GroupBox1里的edit.跳到GroupBox3的edit.
我要求是从GroupBox1到GroupBox2,
每个edit的TabOrder已经设置了。请指教。