Hey,<br><br>I reciently got a copy of Delphi 6 Personal. I'm used to programing in Turbo Pascal 7, which I do own, but my disks have gone bad and I'm unable to...
Hey All,<br>I was wondering.<br>Does anyone know how to read different memory pages?.<br>A pointer only works for the current 64K if I'm not mistaken.<br>Well...
Oaworld2001<br>What level of 3d-coding do you want to go into.<br>You could use Directx8 SDK or you could be writing your code to plot each point.<br>The ...
Hello,<br>can sb help me with my problem:<br>I would like to find out the width of characters in graphics mode. The problem is that characters have ...
yeah, use the "Textwidth" procedure.....it returns the width of a string, which you can just place a string[1] and have the single character in there. hope...
I am new to pascal and need help with a program for school. <br><br>Cars with model numbers 119,179,189 through 195,221 and 780 have been found to have ...
this is fairly simple....just write a series of "if then" statements to find out what is true, if it satisfies the statement, then it's defective, otherwise ...
There are multiple ways of solving this problem, the best ones are to use either a case or a set. I have added source code - but formatting/indenting gets ...
Heh yeah it's been a while, i'm happy to be back, heh, got a bit rusty, havne't updated my site in a long time though, need to work on that if i find the ...
HAHA i have found the Gif viwer...at least the ZIP file for it...i know that it worked at one point, may take a small bit of tweaking, so i've got that if you...
to make it easy on me...e-mail me at Lithium381@... with the addy you want it to go to, and i'll send it...what did you want? all of it or just the gif?...
I got a new computer and Turbo Pascal doesn't work on it! I try to run any program and all I get is an error message saying, 'Error 200 : Dision by 0'. How...
It is caused by your computer being too fast for TP to handle. Suggestions and solutions are provided in previous messages. Look for it.<br><br>Allen....
could someone write the code for a timer with an on button on the first form and an off button on a seperate form. i need to see the time it has taken for a ...
Your best bet for this problem is to use a case statement.<br>You should write the code as follows<br><br>case modelno of<br><br> 119:begin<br> defect;<br>...
You are wrong. The best way to use the case statement is to combine all the "defects" into one single case statement - see code below. The other way could be...
I assume the following:<br>1. That there are two forms in two separate units (Form1-Unit1, Form2-Unit2). <br>2. That the timer is on Form1 with a button to ...
I wasn't wrong. All you have done is tidy the code up. The implication is exactly the same and for a new user, my way shows exactly what the code is doing....
the position is this i have 5 forms with code to start the timer on the first form and code to stop it on the last form but what i need is the code to direct...