Search the web
Sign In
New User? Sign Up
turbopascalprogramming2 · Pascal / Delphi Programming , Mugen ni
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 659 - 688 of 1332   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
659
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...
ginnsu
Offline Send Email
Sep 3, 2001
8:41 pm
660
yes...
turbocharlie9999
turbocharlie...
Offline Send Email
Sep 7, 2001
3:01 pm
661
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...
thingy_ma_bob
Offline Send Email
Sep 7, 2001
9:42 pm
662
How can I create an event for a component?...
bf_rayan
Offline Send Email
Sep 13, 2001
5:48 pm
663
Does anyone have a BASIC tutor or an easy way to do 3D objects (rotating,etc)?? I would love your help.<br>oaworld2001@......
oaworld2001
Offline Send Email
Sep 14, 2001
7:22 pm
664
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 ...
thingy_ma_bob
Offline Send Email
Sep 14, 2001
9:49 pm
665
I would like the easiest way to program 3D objects in Turbo!...
oaworld2001
Offline Send Email
Sep 15, 2001
3:27 pm
666
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 ...
jiri58601
Offline Send Email
Sep 21, 2001
5:30 pm
667
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...
lithium381
Offline Send Email
Oct 2, 2001
11:10 pm
668
After I have finish typing the code in Turbo Pascal v5.5, how do I convert the .PAS file into an executable .EXE file???...
ppulmao
Offline Send Email
Oct 3, 2001
5:10 am
669
MAKE - find it in the menu...
vcode_server
Offline Send Email
Oct 4, 2001
12:22 am
670
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 ...
moe2e
Offline Send Email
Oct 4, 2001
9:52 pm
671
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 ...
lithium381
Offline Send Email
Oct 5, 2001
10:23 pm
672
Thanks for the help...
moe2e
Offline Send Email
Oct 5, 2001
11:16 pm
673
Anyone know how to load images using Turbo Pascal 7.0?...
nobody10_ca
Offline Send Email
Oct 9, 2001
3:03 am
674
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 ...
anilms.rm
Offline Send Email
Oct 9, 2001
5:14 pm
675
What kind of images? I've got a few source snipets that'll load BMPs, PCXs....and i may have a jpg viewer somewhere...let me know what you need....
lithium381
Offline Send Email
Oct 12, 2001
4:47 am
676
Hey Lithium,<br>good to see you active in the room again.<br>Could you send me the jpeg viewer if you find it.<br>I am obtainable at...
thingy_ma_bob
Offline Send Email
Oct 12, 2001
8:58 pm
677
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 ...
lithium381
Offline Send Email
Oct 13, 2001
6:39 am
678
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...
lithium381
Offline Send Email
Oct 13, 2001
6:42 am
679
Hey Lithium,<br>Sure, at the moment I am collecting code.<br>Don't worry about tweaking it.. I will play around with it (best way to...
thingy_ma_bob
Offline Send Email
Oct 13, 2001
9:15 pm
680
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?...
lithium381
Offline Send Email
Oct 13, 2001
9:59 pm
681
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...
oaworld2001
Offline Send Email
Oct 15, 2001
7:55 pm
682
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....
vcode_server
Offline Send Email
Oct 15, 2001
11:43 pm
683
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 ...
tripmasteruk
Offline Send Email
Oct 17, 2001
3:32 pm
684
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>...
avdio
Offline Send Email
Oct 17, 2001
10:56 pm
685
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...
anilms.rm
Offline Send Email
Oct 18, 2001
1:14 pm
686
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 ...
anilms.rm
Offline Send Email
Oct 18, 2001
1:24 pm
687
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....
avdio
Offline Send Email
Oct 18, 2001
7:17 pm
688
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...
tripmasteruk
Offline Send Email
Oct 18, 2001
9:38 pm
Messages 659 - 688 of 1332   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help