Tagged Questions
Pascal is an imperative language from the Wirthian family created in 1969. It was widely used in engineering and teaching in the 1970s and 1980s.
16
votes
24answers
2k views
Delphi/Pascal training in high school/college/university
Are Delphi/Pascal being taught in any high schools/colleges/universities, particularly in Canada and the US?
I was surprised how many schools in the UK are teaching Delphi. Their largest exam board ...
15
votes
9answers
1k views
Do console apps run faster than GUI apps? [closed]
I am relatively new to world of programming. I have a few performance questions:
Do console apps run faster than apps with a graphical user interface?
Are languages like C and Pascal faster than ...
15
votes
7answers
2k views
Are there any static code analysis tools for Delphi/Pascal?
Are there any static code analysis tools for Delphi/Pascal?
I have seen plenty of options for C++ and .NET, but nothing for Delphi/Pascal.
Ideally something that could be integrated into a ...
12
votes
1answer
283 views
How do I automatically set the version of my Inno Setup installer according to my application version?
I am using Inno Setup to generate the installer of my application. How can set the version number of the setup.exe (VersionInfoVersion) generated by Inno to match with the version number of my ...
11
votes
2answers
665 views
Large numbers in Pascal (Delphi)
Can I work with large numbers (more than 10^400) with built-in method in Delphi?
10
votes
6answers
287 views
Strings in a separate .pas file
This may not be the correct place for this question, if not feel free to move it. I tagged as Delphi/Pascal because it's what I am working in atm, but this could apply to all programming I guess.
...
10
votes
4answers
677 views
WHat are the pros and cons of RemObjects PascalScript versus the DWS script?
I'm planning to include a pascal script in my application. It does not require any web access, simply access to classes in my Application. It should be fast (compiled). I see that there are a number ...
9
votes
2answers
788 views
Delphi Pascal - how to write data to file larger than 2 GB?
I made a tool in Delphi to create rainbow table. It was fine until file grew up to 3.1 GB. I closed my program. Then i opened it again and it crashes while executing this code:
...
8
votes
4answers
404 views
How can I determine which libraries are used in a Delphi program I don't have the source for?
I have a windows .exe file, but the source code for it is missing. The developer was not responsible and left our company. I think it was a delphi/pascal program. The developer used many libraries ...
8
votes
3answers
690 views
Building cross-platform Delphi applications
I downloaded Lazarus, but have worked with Embarcadero Delphi IDE too. I have a question about building cross-platform Delphi applications.
How can I build them under win32 environment? I read the ...
8
votes
4answers
267 views
Repeated setters logic in Delphi
For each setter of a class I have to implement some event logic (OnChanging, OnChanged):
procedure TBlock.SetWeightIn(const Value: Double);
var OldValue: Double;
begin
OldValue := FWeightIn;
...
7
votes
20answers
1k views
What is the fastest possible way to sort an array of 7 integers?
This is a part of a program that analyzes the odds of poker, specifically Texas Hold'em. I have a program I'm happy with, but it needs some small optimizations to be perfect.
I use this type (among ...
6
votes
5answers
237 views
Screen recorder
I'm interested in a library(for windows) written in Delphi/Pascal or C++ that allows me to record(to a video format) desktop screen, requirements:
must be able to specify the frame rate, or at least ...
6
votes
7answers
180 views
Declaring Pascal-style strings in C
In C, is there a good way to define length first, Pascal-style strings as constants, so they can be placed in ROM? (I'm working with a small embedded system with a non-GCC ANSI C compiler).
A ...
6
votes
9answers
403 views
How many different letters are in string
I have to write program that counts how many different letters are in string.
For example "abc" will give 3; and "abcabc" will give 3 too, because there are only 3 different letters.
I need to use ...
6
votes
5answers
274 views
embedding pascal
Is anyone aware of a Pascal interpreter/compiler which is embeddable in C++ (or anything else other than Pascal) applications? I am cloning (for lack of a better word) an application which uses an ...
6
votes
7answers
525 views
Tutorial for Pascal/Delphi for C++-Coders
I'm a C++-Programmer. But now i have to learn Pascal/Pascal. Are there any websites, documents around that can teach someone with my knowledge the difference?
6
votes
9answers
1k views
Delphi = Pascal? Resources for Learning?
Well, I am new to Delphi and really offline programming in general (other than the standard C++) and recently acquired a copy of Delphi and was kind of interested in starting with it. I read somewhere ...
6
votes
9answers
4k views
What is the fastest way to Parse a line in Delphi?
I have a huge file that I must parse line by line. Speed is of the essence.
Example of a line:
Token-1 Here-is-the-Next-Token Last-Token-on-Line
^ ^
Current ...
5
votes
2answers
202 views
Algorithm smbPitchShift (Pascal)
thank so much, Rudy Velthuis. it is running pretty cool...
be stored here at stackoverflow
//*************************************************************************//
// ...
5
votes
1answer
200 views
What pascal compilers can target embedded ARM with no OS?
Looks like available Pascal compilers can only produce binaries for ARM on Linux. Is there established version of compiler/bundle for just bare ARM cpu with zero extra software preinstalled ?
To ...
5
votes
2answers
192 views
Pascal for loops within repeat loops
you've all been so helpful so far, so heres another annoying problem for you!
I've got a basic word guessing game, written in Pascal for a console in Delphi 7, where the guesses (right or wrong) are ...
5
votes
3answers
353 views
How do I Invoke a procedure when inside another procedure in Pascal
procedure questiontype;
begin
writeln ('Enter the type of question you would like...');
writeln ('1. Add');
writeln ('2. Multiply');
writeln ('3. Subtraction');
writeln ('4. ...
5
votes
3answers
386 views
Bootable and cross platform applications and using delphi or Pascal
Is it Possible to create bootable (Applications for MBR )application using Delphi or Pascal (I know we cant use vcl , RTL and other stuffs because they depend on OS), but can i use at least Readln and ...
5
votes
2answers
703 views
How to delete chars from string until first char is a letter?
I have a program which works with strings (Pascal). After reading a string if the first char is not a letter then I need to delete all first characters until the first is a letter. I have tried to ...
5
votes
2answers
406 views
Delete first N characters from TextFile without creating a new file (Delphi)
I just wanna to delete from specified text file first N characters, but i'm stuck. Help me please!
procedure HeadCrop(const AFileName: string; const AHowMuch: Integer);
var
F: TextFile;
begin
...
5
votes
7answers
611 views
Why does Pascal forbid modification of the counter inside the for block?
Is it because Pascal was designed to be so, or are there any tradeoffs?
Or what are the pros and cons to forbid or not forbid modification of the counter inside a for-block? IMHO, there is little ...
5
votes
8answers
798 views
Pascal and its current applications
I studied Turbo Pascal in 1997 and I liked it very much as a language. Everything was very structured and the compiler made sure you did things the right way. I later tried Delphi but never got very ...
4
votes
4answers
170 views
How operate on TFileStream
Hello recently I replace TextFile with TFileStream. I never use it so I have small problem with it.
How can I add someting to my file after I assign it to variable?
How can I read someting form that ...
4
votes
2answers
132 views
Why do I/O errors fail to raise exceptions?
I'm using old style Pascal I/O routines and expect that calls to I/O functions that fail should raise an EInOutError. When I try this I do not see an exception raised and I have no clue why.
...
4
votes
3answers
135 views
using eof on C++
i am looking for C++ coding for this pascal code
var
jumlah,bil : integer;
begin
jumlah := 0;
while not eof(input) do
begin
readln(bil);
jumlah := jumlah + bil;
end;
writeln(jumlah);
end.
i ...
4
votes
4answers
230 views
Measuring data traffic flow over server/client socket in delphi?
i am making a program that sends data between a server program and its clients. They all use the server and client socket components found in Delphi! I have looked on the Internet and cannot find a ...
4
votes
7answers
345 views
Did languages before C/C++ have pointers?
Was there any pointer usage in old languages such as FORTRAN (pre Fortran-90), cobol or pascal?
If not, then what is the method those languages used to implement the works done by pointers that are ...
4
votes
2answers
265 views
What does “(.1..10.)” mean in an array declaration?
Nick Hodges mentioned in an article that the following still compiles:
var
WeirdLookingArray: array(.1..10.) of string;
What is the meaning of "." in beginning and end?
4
votes
3answers
342 views
Connect 4: Check for winner
In Delphi, I have a Connect 4 board representation (7 columns x 6 lines) in form of an array:
TBoard = Array[1..7, 1..6] of SmallInt;
Board: TBoard; // instance ob TBoard
Each element can have ...
4
votes
2answers
351 views
3 points are collinear in 2d
I am trying to verify when 3 points (double) are collinear in 2-D. I have found
different Pascal functions that return true if this is verified; those functions use integer to specify X and Y ...
4
votes
3answers
356 views
Simple and comfortable Pascal IDE
Can you suggest me some good Pascal IDEs except Lazarus and Pascal Free? Thank you very much.
4
votes
7answers
474 views
Why do Pascal control structures appear to be inconsistent?
Most Pascal control structures make sense to me, like:
for ... do {statement};
if (condition) then {statement};
while (condition) do {statement};
where the {statement} is either a single ...
4
votes
4answers
1k views
How can I write to console window for debugging?
I'm wondering for can I display the result of a loop in the console window in a VCL application for debugging purposes.
Thanks.
4
votes
1answer
545 views
Application.MainFormOnTaskbar := False; not hiding application from taskbar
Why setting Application.MainFormOnTaskbar to False is not preventing the application from showing on taskbar?
Please help. Thanks.
4
votes
2answers
465 views
Why does the compiler say “Too many actual parameters” when I think I've provided the correct number?
I've declared the following function:
function next(current, next: string): Integer;
begin
form1.Label1.Caption := next;
form1.Label2.Caption := current;
form1.label3.Caption := ...
4
votes
1answer
695 views
Why Pascal const arrays aren't actually constants?
Program ConstTest;
Const constVar = 1;
Begin
constVar := 3;
WriteLn(constVar);
End.
It's pretty obvious that the above code will not compile, because it's not right to change the ...
4
votes
6answers
497 views
What does “free” do in Delphi?
I found the following code snippet here:
with TClipper.Create do
try
AddPolygon(subject, ptSubject);
AddPolygon(clip, ptClip);
Execute(ctIntersection, solution);
finally
free;
...
4
votes
6answers
645 views
What is the '#" symbol in Pascal?
For example:
x := #123;
I tried to search around Google but I simply have no idea what this means.
4
votes
3answers
3k views
Exchanging strings (PChar) between a Freepascal compiled DLL and a Delphi compiled EXE
After a lot of experimentations, I found a way to exchange PChar from a FreePascal compiled DLL with a Delphi compiled EXE. I'm in charge of both the DLL and EXE source code but one MUST BE in ...
4
votes
2answers
107 views
Usage of # in Pascal
Q1: What does this mean: WriteLn (#$0b)?
$0b should hexadecimal like 0x0b, but what about the # sign?
Q2:
x:=readkey;
if ( x = #5) do...
Does #5 mean five? Then what is the# sign for?
Many ...
4
votes
5answers
802 views
How does the Delphi / Borland Pascal STR procedure round
Both, Borland Pascal 7 and Delphi 2007 have got the procedure STR which takes a number, a length and precision and converts it to a string like this:
str(9.234:5:1, s); // -> s = ' 9.2'
All is ...
4
votes
3answers
1k views
Online Code Beautifier And Formatter for Delphi or Pascal
Do you know any online Code Beautifier And Formatter for Delphi or Pascal Sintax?
only i can found this tool , but only highlight the source code.
Bye.
4
votes
1answer
573 views
Delphi Syntax for TextMate
I exchanged emails with Marc-André Cournoyer of RefactorMyCode.com about supporting Delphi on his site. Since his site uses Ruby's UltraViolet to do syntax highlighting, and it uses TextMate ...
3
votes
1answer
59 views
Divide (DIVS) not working on jack crenshaw's let's build a compiler
I am following the excellent Let's Build a Compiler tutorial by Jack Crenshaw found at http://compilers.iecc.com/crenshaw. I am testing the generated 68k assembly with the Easy68k ...