problema ao fazer um While
15/02/2003
0
////
TbItens.First;
While Not TbItens.eof do
begin
if TbItensPago.Value = ´N´ then
begin
TbItens.Edit;
TbItensPago.Value:=´S´;
If TbItensInicio.Value = True then
TbItensDataHoraFim.Value:=WHora;
TbItens.Post;
end;
end;
TbItens.Next;
end;
Se alguém puder me ajudar eu agradeço, pois já tentei muito.
Janete
Posts
15/02/2003
Poeta Noturno
Ou se preferir, me mande um e-mail, ok?
Um abraço
Poeta Noturno
15/02/2003
Anonymous
with TbItens do
begin
First;
While Not eof do
begin
if FieldByName(´Pago´).Value = ´N´ then
begin
Edit;
FieldByName(´Pago´).Value:=´S´;
If FieldByName(´Inicio´).Value = True then
TbItensDataHoraFim.Value:=WHora;
TbItens.Post;
end;
Next;
end;
end;
se tentar e der certo ou não me mande um e-mail vamos ver o que pode ser ok??? xixico@pop.com.br
15/02/2003
Anonymous
while not TbItens.EOF do
begin
if TbItensPago.Value = ´N´ then
begin
TbItens.Edit;
if TbItensInicio.Value = True then
TbItensDataHoraFim.Value := WHora;
TbItens.Post;
TbItensPago.Edit;
TbItensPago.Value := ´S´;
TbItensPago.Post;
end;
TbItens.Next;
end;
16/02/2003
Magoo
While Not TbItens.eof do
begin
if TbItensPago.Value = ´N´ then
begin
TbItens.Edit;
TbItensPago.Value:=´S´;
If TbItensInicio.Value = True then
TbItensDataHoraFim.Value:=WHora;
TbItens.Post;
end;//if TbItensPago . . .
end;//while not TbItens.eof . . .
[b:489d6e848a]TbItens.Next;[/b:489d6e848a]
end;
O problema do código é que você está usando o método [b:489d6e848a]Next[/b:489d6e848a] fora do laço While . . . por isso só dá certo quando vc tem apenas um registro no seu DbGrid . . .
Clique aqui para fazer login e interagir na Comunidade :)