[ Divjak @ 02.04.2005. 13:51 ] @
1. Kako proveriti da li u odredjenoj tabeli u odredjenom polju postoji odredjeni unos? 2. Kako sve unose iz jednog fielda ucitati u combobox? |
[ Divjak @ 02.04.2005. 13:51 ] @
[ Bojann @ 04.04.2005. 19:15 ] @
1. if table.locate('ime_polja',vrednost,[]) then showmessage('postoji')
else showmessage('ne postoji'); 2. combobox1.clear ili combobox1.items.clear( nisam siguran pisem iz glave) table.first; while not table.eof do begin combobox.items.add(tableimepolja.value as string) table.next; end; Copyright (C) 2001-2025 by www.elitesecurity.org. All rights reserved.
|