here:<br>function fact(n: Integer): LongInt;<br>var i: Integer;<br> sum: LongInt;<br>begin<br> if n = 0 then fact := 1<br> else begin<br> sum := 1;<br> for i...
Hello<br><br>I am new to this group. My question may have been addressed many times before, but however......<br>After about seven years I am trying to pick up...
Hallo<br><br>I addressed the same question today, not having read your reply. Can you please read my message # 778 and give me some advices ?<br>Greetings Alf...
Hi I just recently started the Bachelor of IT and we've started to program in pascal, and i am clueless.<br><br>I am experienced in BASIC specifically...
I don't remember how the BASIC-functions<br>work,<br>but I guess, that the copy-function is what you<br>are<br>looking for. The following is from ...
I've been programming with TP for about 8 years, still using TP 6 for DOS, but thinking about upgrading to Delphi to be able to create Windows apps. I've ...
You must consider only the three importantns things:<br>1. put the directive {$APPTYPE CONSOLE}<br> after the program rezerved word.<br> don't foget to change ...
Does anyone know where I can find DOS TP code for creating TCP/IP packets? I've got the 900+ page IBM book on TCP/IP, but why reinvent the wheel.<br><br>Thanks...
I suggest you forget your old TP source code for a moment and start learning the basic of Delphi first. E.g. instead of using writeln / readln you should learn...
You can use a lot more of your original code. If you define all of your strings as shorstring.<br>Shortstring is the same as string in Turbo Pascal (max 255 ...
Hi all,<br><br>Does anyone know of a program/procedure that outputs<br>all possible combinations (not permutations) of an<br>arbitrary number of things? I'm...
I have a problem. I have Turbo Pascal 7.0 loaded on my machine (IBM Thinkpad 600E) and I get the following error message when I try to run the TVDemo.PAS ...
Please follow the following ...<br>1. Set linker to disk not to memory !<br>2. Set stack and heap size to maximum values see help index at $M for values ...
Not sure exactly what you're looking for, i'm about to send the file i have....it's not a virus to the best of my knowlage, i've never had anything go wrong...
I am trying to communicate with a non standard electronic device (digital sign with no supplied driver) via the serial port (com1) of my PC. I understand in ...