Substituir TAB por ENTER
Ola amigos, como faço para substituir a tecla tab pela tecla enter?
Obrigado pela ajuda
Renato
Obrigado pela ajuda
Renato
Anonymous
Curtidas 0
Respostas
Uoquisala
06/02/2003
E so vc baixar o Componente MDComponentes na seção componentes do Clube Delphi.
Valeu
Valeu
GOSTEI 0
Rubensavelino
06/02/2003
// Alterar a tecla TAB para ENTER.
// No evento KeyPress do Form, digite...
with Sender do
if Key = #13 then begin
SelectNext(Sender as tWinControl, True, True);
Key := 0;
end;
:arrow: :idea: :roll:
// No evento KeyPress do Form, digite...
with Sender do
if Key = #13 then begin
SelectNext(Sender as tWinControl, True, True);
Key := 0;
end;
:arrow: :idea: :roll:
GOSTEI 0
Roa
06/02/2003
Coloque o seguinte código no evento OnKeypress do seu Form:
if (Key = #13) then begin
Key := 0;
Perform(Wm_NextDlgCtl,0,0);
end;
Depois altere a propriedade KeyPreview do Form para ´true´.
Espero ter ajudado.
if (Key = #13) then begin
Key := 0;
Perform(Wm_NextDlgCtl,0,0);
end;
Depois altere a propriedade KeyPreview do Form para ´true´.
Espero ter ajudado.
GOSTEI 0
Robsonismael
06/02/2003
coloque dentro do evento OnKeyPress do formulario o seguinte codigo:
if key =#13 then
begin
key:=0;
if (sender is TDBGrid) then
TDBGrid(Sender).Perform(WM_KeyDown,VK_Tab,0)
else
Perform(Wm_NextDlgCtl,0,0);
end;
if key =#13 then
begin
key:=0;
if (sender is TDBGrid) then
TDBGrid(Sender).Perform(WM_KeyDown,VK_Tab,0)
else
Perform(Wm_NextDlgCtl,0,0);
end;
GOSTEI 0
Anonymous
06/02/2003
Valeu pessoal..
Brigadao pela ajuda..
Renato
Brigadao pela ajuda..
Renato
GOSTEI 0
Anonymous
06/02/2003
Aproveitando a pergunta e as soluções, para mudar TAB para o ENTER, eu gostaria de saber, se alguém sabe uma forma de mudar o TAB pelo ENTER, no intraweb ???
Pois essas rotinas, no intraweb, nao funciona ...
Valeu galera
Pois essas rotinas, no intraweb, nao funciona ...
Valeu galera
GOSTEI 0