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 1158 - 1187 of 1332   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
Offline 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
1182
Actually, I think you were answering a very simple question from a beginner - and confusing him/her totally. He/she wasn't asking how to write the logic, just...
David Smart
smartware_co...
Offline Send Email
Aug 22, 2003
11:48 am
1183
David: Upon reflection I must agree with your conclusion that the question was asked by a beginner, and I was answering it without that realization. As to the...
Glenn
gordell
Offline Send Email
Aug 22, 2003
7:36 pm
1184
JJ, I have noticed that people are startting to argue with each other about a way to solve your programming problem and gave you small snips on how todo it. I...
Chris Hoppman
bluewolf2005
Offline Send Email
Aug 23, 2003
12:02 am
1185
... Now I'm intrigued. Why would you use paired arrays to convert a string to upper case? Regards, David Smart SmartWare Consulting smartware@... ...
David Smart
smartware_co...
Offline Send Email
Aug 23, 2003
3:47 am
1186
... You ... Original question was "when I input 'a' instead of 'A', it doesn't work correctly.". We have just A, B, C, D, E, Fx grades, not plus/minus-ones,...
Ondrej Svacina
ondrejsv
Offline Send Email
Aug 23, 2003
11:29 am
1187
What you say is quite correct, but almost immediately afterwards JJ clarified ... ... Hence my comment. Regards, David Smart SmartWare Consulting ...
David Smart
smartware_co...
Offline Send Email
Aug 23, 2003
11:58 am
Messages 1158 - 1187 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