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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1152 - 1181 of 1332   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1152
three days i couldnt solve this question, please i need help: input temperatures of 7 days of a week and create a vertical bar diagram representing...
JJ
jasonhk0
Offline Send Email
May 11, 2003
5:31 pm
1153
solved: http://anoftc.mad.hu/homero.pas ZS ===== E-mail sent by _AnoN_ (a.k.a. Anonymus, AnonymusFTC, ZS, Gonzales) WEB: http://anoftc.mad.hu ;...
Zsolt Szabo
anonymusftc
Offline Send Email
May 12, 2003
11:28 am
1154
Why not show us what you have written? It could be that some simple change would do the trick....
rnmclean
Offline Send Email
May 12, 2003
5:25 pm
1155
Hi, sorry ZS but u used functions.. we didnt reach that yet.. the prog should be like this one but instead of horizontal it should be vertical program temps; ...
JJ
jasonhk0
Offline Send Email
May 13, 2003
9:55 am
1156
Dear Jason, Well, "all" you have to do is interchange the usage of vertical and horizontal, but since output is not via an x-y plotter, it is messy since you...
rnmclean
Offline Send Email
May 13, 2003
3:37 pm
1157
Well, actually, if the output is to go to the screen, and only then, you could use the bizarrely-named GoToxy procedure (I keep thinking of toxins when I see...
rnmclean
Offline Send Email
May 13, 2003
8:18 pm
1158
hi guys, I have this problem which im trying to solve and i couldnt since some weeks now.. need your help.. plz check the attached file. the output should be...
JJ
jasonhk0
Offline Send Email
Jun 18, 2003
8:32 pm
1159
Why don;t you give us the original problem first? ... __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! ...
Laurian Angelescu
angelescu_la...
Offline Send Email
Jun 18, 2003
9:22 pm
1160
I attached the file .... it shows everything --- ... ______________________________________________________________________ Post your free ad now!...
JJ
jasonhk0
Offline Send Email
Jun 18, 2003
11:27 pm
1161
i think the attachment was blocked. it happened to me once. i think it comes with the policy the block attachments. better type your problems in the message...
Isaac Oblefias
ioblefias
Online Now Send Email
Jun 19, 2003
1:08 am
1162
yes I think youre right, well the attachment is an exe file showing what should be done.. but I will type the whole problem, The Problem: A certain shop sells...
JJ
jasonhk0
Offline Send Email
Jun 19, 2003
8:41 am
1163
Hi guys I have a wee program i wrote a year or so ago for a college project. The program was to accept bookings for a seminar room and to then allow for these...
lucylambkin
Offline
Aug 15, 2003
11:24 am
1164
This may be a bit late, but the "help" for TP7 states that the Printer unit declares var Lst: text; for you so that writes to that go to the LPT1 device on the...
Nicky
rnmclean
Offline Send Email
Aug 15, 2003
3:35 pm
1165
... The problem with this is that unlike dot matrix and laser printers (that were both quite common when TP7 was new), many modern inkjet no longer support...
andrew clarke
zoomosis
Online Now Send Email
Aug 15, 2003
6:32 pm
1166
Hi guys, Im writing a program which has some if statements like: if g='A' then .... etc.. my problem is when I input 'a' instead of 'A' the programs doesnt...
JJ
jasonhk0
Offline Send Email
Aug 20, 2003
3:22 am
1167
If you look at an ASCII chart, you will notice that the value assigned to "A" is 65, and the value assigned to "a" is 97. Compilers tend to be very fussy...
Glenn
gordell
Offline Send Email
Aug 20, 2003
5:08 am
1168
Dear Glenn, Thanks for what you wrote here,, well im using turbo pascal.. and the problem is that the program asks the user to input grades like 'A-','B+'.....
JJ
jasonhk0
Offline Send Email
Aug 20, 2003
7:37 am
1169
I don't know of any compiler or language which will default to a case-free text comparison. "A" and "a" are completely different ASCII characters. I don't...
David Smart
smartware_co...
Offline Send Email
Aug 20, 2003
10:57 am
1170
... Try (if g='a' OR g='A') Rachael. -- http://www.thegangonline.org.uk // MSN & AIM - E-mail and ask us // "And I dream one day I'll find, The ones who...
R MacGregor
beccybabe
Offline Send Email
Aug 20, 2003
5:15 pm
1171
Dear Rachel, I have tried that, but it didnt work :) jj,, ... wrote: > In message ... ______________________________________________________________________ ...
JJ
jasonhk0
Offline Send Email
Aug 21, 2003
3:47 am
1172
Hi Jason, Once again, I point out that I have not a clue about which version of Turbo Pascal you are using. This is an important factor for most issues. My...
Glenn
gordell
Offline Send Email
Aug 21, 2003
8:59 am
1173
Dear Glenn, well, im not much into details in pascal but, im using TP 7.1 , and im not much into arrays... :( non of the clues I read here I understood......
JJ
jasonhk0
Offline Send Email
Aug 21, 2003
5:12 pm
1174
With all this talk I forgot what was the original question. Could you please formulate it again? As far as I understood you want something to be executed when...
Laurian Angelescu
angelescu_la...
Offline Send Email
Aug 21, 2003
6:00 pm
1175
Dear Laurian, My problem is as follows: Im writing a program which calculates the GPA by inputing grades like 'A', 'A-' etc.. and credits for each grade.. the...
JJ
jasonhk0
Offline Send Email
Aug 21, 2003
7:56 pm
1176
... It didn't work because OR operator has higher priority than =, so g = 'a' OR g = 'A' is the same as g = ('a' OR g) = 'A' which is a total nonsense. Use...
Ondrej Svacina
ondrejsv
Offline Send Email
Aug 21, 2003
8:42 pm
1177
Test for upper-cased letter: If UpCase(read_char) = 'A' Then ... Ondrej Svacina ... http://docs.yahoo.com/info/terms/...
Ondrej Svacina
ondrejsv
Offline Send Email
Aug 21, 2003
8:42 pm
1178
Yes, I intended to give you the same idea as Ondrej but was confused by the very complicated response that suggested arrays. This is the reason for which I...
Laurian Angelescu
angelescu_la...
Offline Send Email
Aug 21, 2003
10:22 pm
1179
Why use a two-dimensional array? For elegance in the final product. JJ appears to be attempting to equate specific grades with specific numerical values. So...
Glenn
gordell
Offline Send Email
Aug 22, 2003
5:19 am
1180
Remember that UpCase only works on a single character, not a string. You have grades such as A+, which is presumably held in a string. I replied to your...
David Smart
smartware_co...
Offline Send Email
Aug 22, 2003
9:11 am
1181
Come on people!!! Why must you write such complex logic sequences? Multi-dimensional arrays provide extremely elegant solutions to otherwise complex logic...
Glenn
gordell
Offline Send Email
Aug 22, 2003
11:37 am
Messages 1152 - 1181 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