[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 594: sizeof(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 650: sizeof(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 1110: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 1110: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 1110: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5277: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5277: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5277: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3903)
Fórum Xmaker • Qtde de registros em uma tabela
Página 1 de 1

Qtde de registros em uma tabela

Enviado: Janeiro 14th, 2012, 7:50 pm
por Pedro Gomes
Ola pessoal,
Estou com uma certa dificuldade para a questão abaixo.
Tenho um formulário Clientes e preciso que ao entrar neste formulário seja exibido o total de registros contidos na tabela clientes e qual a posição do registro atual.
Exemplo
Tabela Clientes - registro 12 de 40 registros, ou seja, estou posicionado no registro numero 12 de um total de 20 registros contidos na tabela.

Por favor, alguém se habilita a me ajudar.

Desde já agradeço.

Pedro Gomes

Re: Qtde de registros em uma tabela

Enviado: Janeiro 16th, 2012, 9:11 am
por Gustavo
Olá,

Você pode colocar o código no FormShow de seu Form;

TabelaPrincipal.last; //(Opcional), vai para o último registro da tabela
label1.caption := inttostr(TabGlobal.DTabela.recno); //mostra o regitro atual
label2.caption := inttostr(TabGlobal.DTabela.recordcount);//Mostra a quantidade de registros da tabela

Nesse exemplo mostramos as informações em duas labels, mas se você quiser, pode mostrar em um showmessage.

Re: Qtde de registros em uma tabela

Enviado: Janeiro 16th, 2012, 1:37 pm
por Pedro Gomes
Olá Gustavo,
Obrigado pela sua atenção e resposta a minha pergunta.
Fiz só uma correção, quando vc cita TabGlobal, eu alterei para TabelaPrincipal, para se referir a tabela que estará aberta quando o formulário for aberto.

Pedro Gomes.