- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
5 Posted Topics
Re: [QUOTE=RobMan2000;693600]greetings all. this is my first post on these forums so excuse me if i'm not familier with etiquettes! im looking for a way of making my program wait before continuing on to the next line of code. i know a function does exist, it is even one i have … | |
Re: compare each character to the ASCII a..z or A..Z range of characters. if character outside those ranges, message user that the character is bad, then allow user to re-enter. | |
Re: IntraWeb. Run it (.exe) as a service. | |
Re: program blahblahbla; uses Forms, Windows, SFV215_Main in 'SFV215_Main.pas' {CartForm1}, DMunit in 'DMunit.pas' {DM: TDataModule}, SFV215_Identify_User_and_Prep in 'SFV215_Identify_User_and_Prep.pas', logger in '..\SharedCode\logger.pas'; {$R *.res} var PreviousHandle : THandle; begin PreviousHandle := FindWindow('TCartForm1','Cart-O-Rama'); //allow only 1 //parameters are main form type and main form caption if PreviousHandle <> 0 then //instance to run … | |
Re: [QUOTE=taineechan;702787]Hi All I want to delete records from a table. I'm using the following query: [code] adqdelete.active := false; adqdelete.sql.add('delete from stalls'); adqdelete.sql.add('where stall_name ='); adqdelete.sql.add(edtDeleteStalls.Text); adqdelete.active:=True; [/code] adqdelete.active := false; adqdelete.sql.clear; adqdelete.sql.add('delete from stalls where stall_name = ' + quotedStr(edtDeleteStalls.Text)); adqdelete.active:=True; |
The End.