Forum: Pascal and Delphi Jun 4th, 2007 |
| Replies: 7 Views: 4,178 Maybe do a find to see the places that the method causing the problem is called from? I'd place breakpoints before the calls (if there aren't too many!) and trace it that way. It shouldn't be too... |
Forum: Pascal and Delphi Jun 4th, 2007 |
| Replies: 7 Views: 4,178 1+2
HOPE THIS HELPS LOVE PTY |
Forum: Pascal and Delphi May 24th, 2007 |
| Replies: 5 Views: 1,903 .DPR (delphi project) is what you're after; you will need Delphi to work easily with this project. |
Forum: Pascal and Delphi Jan 18th, 2007 |
| Replies: 9 Views: 4,296 Does TDate not provide the functionality you require? |
Forum: Pascal and Delphi Nov 17th, 2006 |
| Replies: 12 Views: 3,390 Delphi is a good place to start, it isn't the trendiest language around nowerdays but it teaches you good habbits and is extremely powerful and flexible. This... |
Forum: Pascal and Delphi Sep 30th, 2006 |
| Replies: 6 Views: 11,013 I've not used Delphi for a while but is it something like
Length(anArray) |
Forum: Pascal and Delphi Sep 30th, 2006 |
| Replies: 1 Views: 2,186 What db are you using?
You should be doing that stuff in the database using a stored procedure or whatever. To count things in a database use something like :
select count(*)
from items
... |
Forum: Pascal and Delphi Sep 7th, 2006 |
| Replies: 2 Views: 3,327 |
Forum: Pascal and Delphi Jul 19th, 2006 |
| Replies: 14 Views: 3,929 I started with Pascal and Delphi towards the end of school, then used it while at uni along with C++ and some VB
Pascal is just not 'fashionable' at the moment. It is an excellent language to... |
Forum: Pascal and Delphi Jun 8th, 2006 |
| Replies: 4 Views: 2,397 InToStr is not a function. You're looking for IntToStr which, funnily enough, converts Integers to Strings.
try goin to about.delphi.com (http://delphi.about.com) if you need tutorials etc |
Forum: Pascal and Delphi Jun 7th, 2006 |
| Replies: 2 Views: 2,366 you need to declare the var first:
procedure TForm1.Button1Click(Sender: TObject);
var
j: integer;
begin
for j:=1 to 5 do
begin
ShowMessage('box : ' + IntToStr(j));
end; |
Forum: Pascal and Delphi Jan 31st, 2006 |
| Replies: 1 Views: 4,599 Form1.AlphablendValue:=StrToInt(Edit1.Text);
Form1.Alphablend:=True; |
Forum: Pascal and Delphi Nov 13th, 2005 |
| Replies: 4 Views: 2,066 sorry for asking the obvious but what happens if you put in a breakpoint and step into (f7): number:=op_entre_term(sub_expres);
do you have error trapping? i'd put a watch on each of the... |
Forum: Pascal and Delphi Nov 9th, 2005 |
| Replies: 3 Views: 2,512 indy demos (http://www.indyproject.org/Sockets/Demos/index.iwp) |
Forum: Pascal and Delphi Nov 7th, 2005 |
| Replies: 1 Views: 2,443 this part sounds strange to me:
Comp.Caption:='Computer Guesses ' + b;
if b<>a then
Res.Caption:='Wrong';
if b > a then
d:=Inputbox('User Input','Is it less or more?','less');
if b=a then... |
Forum: Pascal and Delphi Nov 1st, 2005 |
| Replies: 3 Views: 14,103 hi - depending on the version of delphi you have, the indy components may be installed. if not you can get em from their site (http://www.indyproject.org/). the indy (internet direct) suite is a... |
Forum: Pascal and Delphi Oct 29th, 2005 |
| Replies: 2 Views: 2,541 your description confused me, but would it not make sense to loop through each coin in descending order increasing the quantity until the value is the coin's value less than the total? so for... |