Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #37.0K
~3K People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for RobMan2000

[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 …

Member Avatar for Wolfgan
0
2K
Member Avatar for Pekulacis

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.

Member Avatar for Maggy0426
0
333
Member Avatar for serkankucuk
Member Avatar for dodol

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 …

Member Avatar for LizR
0
182
Member Avatar for taineechan

[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;

Member Avatar for ennis
0
370

The End.