No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Hello everyone, I am using Delphi2010 and I'm trying to do an insert into multiple tables. I don't know the best way to do this. What I'm wondering is if there is a possible way to do one insert using one of Delphi's tools like the TQuery or TClientDataSet or …
Can you do something like this? Procedure TfrmRasCorrections.dfFirstNameKeyPress(Sender: TObject; Var Key: Char); Begin //The #8 allows backspace to be used. //The #32 is for space bar to be used. //'A'..'Z' allows uppercase. 'a'..'z' allows lowercase letters. If not (key in ['A'..'Z', 'a'..'z', #8, #32]) then Begin Key:= #0; Beep; //I'm …
The End.
Maggy0426