[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 • Campo Memo extrair dados
Página 1 de 1

Campo Memo extrair dados

Enviado: Agosto 21st, 2017, 3:14 pm
por megafsem
Boa Tarde

tenho Uma tabela que no campo bbb-memo recebe dados através de copiar um texto e colar, apos isso pretendo tirar dados ali colados, como nome, endereço, datas e etc., alguém poderia dar uma solução para essa situação, sendo que os dados estão em varias linhas, e sera gravado em varias tabelas, ex. nome do cliente, serviço solicitado, data, hora, e outras informações.
se alguém puder ajudar agradeço

Re: Campo Memo extrair dados

Enviado: Agosto 23rd, 2017, 3:14 pm
por Adilson
Ler linhas de um campo do tipo "Memo"

Para ler o conteúdo de um campo "Memo" utilize a propriedade "Conteudo" do objeto, essa propriedade é do tipo "TStringList", exemplo:

var
I: Integer;
begin
for I:=0 to TabGlobal.DCLIENTES.Obs.Conteudo.Count-1 do
ShowMessage(TabGlobal.DCLIENTES.Obs.Conteudo[I]);
end;