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. It lives on in compilers as Free Pascal and Delphi.

learn more… | top users | synonyms

4
votes
1answer
139 views

JSON parser in PascalScript

Is there a JSON parser written in standard, procedural Pascal? There are a couple of object-oriented implementations in Delphi, but I need to do the parsing in PascalScript, and unfortunately classes ...
3
votes
1answer
63 views

How does Oberon's object oriented model differ from standard OOP?

I've been reading Wirth's books on Oberon--or at least trying to--and I'm hitting a mental road block when it comes to figuring out what is going on regarding object oriented programming in Oberon. I ...
1
vote
2answers
85 views

Scripting language component for Lazarus

What is the best multiplatfrom scripting language component to embed into lazarus build projects with full support of the GUI. I have tried "Pascal Script" but it has no sample code or documentation ...
8
votes
2answers
90 views

Loading pre-compiled script in RemObjects Pascal Script (Delphi)

I am trying to load a pre-complied RemObjects Pascal Script in Delphi at run-time. However when I try to load it Delphi excepts with 'Cannot Import VALUE_TEAMCODE.' Value_TeamCode is a function in ...
0
votes
0answers
9 views

Identifier idents no member for child class

I do a little project in Pascal and I have a problem. I have 3 class (1 parent 2 child) TGroup = class ... end; TUser = class(TGroup) ... public someVariableForUser: Integer; ... end; TAdmin = ...
0
votes
1answer
35 views

FreePascal: Casting object from Double -> Object -> Double works, but just Double doesn't

Another in the series of TObject to Double madness. SetPixel requires a Double as its first argument (that is a pointer to a IBlittable). GetWindowByHWND returns a Double. This does not work ...
4
votes
1answer
120 views

Delphi if else if else statement not working “Type of expression must be BOOLEAN”

I am trying to make a currency converter in Delphi, and it has been a while since i last used Delphi so i am a bit rusty. When i am trying to make an if, else if, else statement it is giving me the ...
-4
votes
1answer
122 views

Windows taskbar icons again [closed]

My goal is to determine is some window have icon on the Windows taskbar. My question is: is it any solution simplest then figured below? And, it will be very nice advice: how to implement such ...
0
votes
1answer
21 views

FreePascal: Free pointer to class

I'm writing a DLL to interface with Game Maker. (Game maker only deals in Doubles.) Here's a function: function CreateBitmap(W, H: Double): Double; var TBM: TBitmap; begin TBM := ...
0
votes
0answers
33 views

database program written in lazarus

Hi i need to write some Graphic interace program that allow keeping, finding and adding data about some topic (something like database). Here is a example (zoo manager) ...
0
votes
1answer
23 views

linux version of Free Pascal does not have Go32v2 process unit where to get process unit?

I have a problem with my compiler. It can't find the unit Process for Go32v2 Where can I download the unit and how do I install it?
3
votes
0answers
105 views

How do we Get keyboard idle time in delphi

The following code can get the system idle time. function IdleTime: DWord; var LastInput: TLastInputInfo; begin LastInput.cbSize := SizeOf(TLastInputInfo); GetLastInputInfo(LastInput); Result ...
0
votes
1answer
23 views

Pascal- How to convert Real to Integer variable

I'm writing a task in pascal. Everything is ok, just my result is not right. I'm summing some numbers Example: 2.3 + 3.4+ 3.3 = 9 But output shows: 9.000000 + EEE or something like that. So- how ...
0
votes
2answers
167 views

Why 'form close' event is not happening when a huge for loop is runnig in Delphi?

I am trying out following code. However, if I click on form's close button while this code is running, nothing happens. How can I correct this? I need to close the form even when this loop is ...
5
votes
3answers
151 views

In Java, is there an equivalent of Pascal's typed constants

In Delphi / Pascal there is a mechanism by which local variables in a method can remember a value from one method call to the next. This is done using typed constants. For example: procedure blah(); ...
1
vote
1answer
32 views

fpc Pascal Runtime error 216 before execution ends

I was implementing adjacency list in Pascal (by first reading edge end points, and then using dynamic arrays to assign required amount of memory to edgelist of each node). The program executes fine, ...
0
votes
3answers
46 views

What's past the end of `environ`?

I'm facing an issue with the Free Pascal shared library startup code on Android. The Free Pascal RTL sources have the following fragment: type TAuxiliaryValue = cuInt32; TInternalUnion = record ...
-1
votes
1answer
34 views

Pascal code not compiling - error [closed]

I am learning pascal and my code is not compiling... Could someone help me?? I have tried in a few online compilers, but them all return an error. Thanks in advance! PROCEDURE ProcSoma (A: INTEGER, ...
0
votes
1answer
64 views

INNO setup which will take employee details? [closed]

i want to Create an INNO setup which will take employee details[say 5 employee] from the user on separate pages and will display the memo at the end a) Employee Name b) Age c) Designation d) Salary e) ...
-1
votes
1answer
43 views

Pascal logic and the probable output

I have the code below. I got confused when compiling it, there are no error messages but the output didn't appear. I want to know what is the propbable output. Program test; Var ...
-2
votes
1answer
224 views

What's the difference between defining a class as TObject or just a class? [duplicate]

What is the difference between these two ways of defining a class? TMyClass = class end; TMyObject = class(TObject) end; Obviously one derives from a TObject and the other is a class of its own. ...
1
vote
3answers
54 views

nil pointer in Pascal

I have a problem understanding the behavior of pointers set to nil in Pascal. I am using turbo pascal 7.0. It seems that when I set two pointers head,tail to nil...they always seem to point to the ...
1
vote
0answers
104 views

PAL Scripting (SAM Broadcaster/Delphi/Pascal) New MySQL Connection

I'm sending broadcasting data from home to online mySQL every 7 seconds so my streaming website can get notified if I'm streaming or not. The problem with this setup is, the application hangs because ...
0
votes
2answers
28 views

Changing value by pointer within function

I want to use a simple fucntion (sqr for a number) function stepenadr(adresss:pointer):real; begin stepenadr:=adresss^*adresss^; end; by using an adress of real variable adress:=@x1; like this: ...
3
votes
1answer
63 views

Global Management of Multiple Compilers in Lazarus IDE

I've been searching around the Lazarus IDE documentation for a bit, and thus far only found information related to cross compiling, so I was hoping someone could give me a straight answer on this. I'm ...
1
vote
1answer
134 views

How to run a .JAR file with Delphi [closed]

Me and a friend have being trying to do this for a while and regardless of how hard we searched and tried; we just couldn't do it. But what we are trying to do is Run/Execute a .jar file from delphi ...
1
vote
1answer
72 views

Capture a window inside my form

I want to capture a window inside my form, how can I do that? I remember seeing a code that did this. It worked with the window handle. It behaves kind of like WinRAR's extraction window:
0
votes
3answers
42 views

Modulo operator in Pascal?

How can I get the leftover of dividing 2 ints? When using Java I use the % operator, but what can I do in Pascal?
1
vote
1answer
65 views

Using ReadProcess function of kernel32.dll at pascal

I override the function library kernel32.dll in Pascal and OpenProcess function returns 0. Function GetLastError() returns 87 error, that means ERROR_INVALID_PARAMETER 87 (0x57) The parameter ...
1
vote
3answers
83 views

Counting the number of decimal places in pascal

I just started studying pascal and I have to do a pascal program as homework. I made it but i don't know how to count the number of decimal places in a real number (the number of digit after the "."). ...
0
votes
4answers
41 views

Loops and Control statements within pascal

Just wondering if I could get some help with a code problem I am having. Aware it is probably a syntax error. Code is as follows. It was somewhat working, (still error) but now it isn't compiling or ...
4
votes
2answers
98 views

Base-n digits for a given value

Here is the function I use to produce a UInt64 result from an array of digits and a base value. function BaseNToInteger(const ABase: Cardinal; const ADigits: Array of Byte): UInt64; var i: Integer; ...
0
votes
4answers
261 views

Delphi - Sorting real numbers in high, low, high, low order

Say I have the data 1,2,3,4,5,6 I want to sort this data so that it outputs 6 1 5 2 4 3 This way, numbers are matched so that low numbers pair with high numbers Would i use a merge sort to sort ...
0
votes
0answers
29 views

Pascal. Specify to use a variable instead of function with the same name>

I'm writing long digit arythmetics. This is a function for adding to longint long binary digits. I need to output the sum inside the function, to debug it. How could I do it, without creating new ...
2
votes
2answers
176 views

Delphi: How to get (current code line, current unit, current function) without using Assertion?

I am trying to create a log system on my program that will log debugging messages on text files, and I want to save the exact place in the code where the log message called, but I don't want to use ...
1
vote
2answers
49 views

2^n calculator in pascal for n={bigger numbers}

Before i must say this : Please, excuse me for my bad english... I'm student.My teacher gave me problem in pascal for my course work... I must write program that calculates 2^n for big values of ...
1
vote
1answer
90 views

sorting a file of records error

I need to sort a file of records but I am not quite sure of how to do it. I have a file of records and I have attempted to sort them using a simple bubble sort but I am stuck and need some help. ...
1
vote
1answer
59 views

Pointer to pointer and NewHandle function in (Think) Pascal

What is a purpose in Pascal to declare variable that is pointer to a pointer? I have a code in Mac Think Pascal. Here is some parts from the code that I don't understand: type my_array = ...
-2
votes
3answers
82 views

How do I make connection between csharp and Java

Csharp App1 have implemented named pipes communication. It requires several parameters to start. I have functional pascal App2 class which connects with App1 with following method: //declaration of ...
1
vote
1answer
88 views

E2033 Types of actual and formal var parameters must be identical

I have this line of code throwing up the above error: server:=TIdHTTPServer.Create; server.OnQuerySSLPort(8092,true); I've read about using the right vars/constants but that doesn't seem to work. ...
1
vote
1answer
102 views

Update DLL Server with Inno Setup

How do I structure my Inno Setup script to automatically register a dll if it is the first time a user has installed my application but unregister a previous version if there is one and then register ...
-2
votes
3answers
243 views

Increment an integer variable in a loop

I have "i" that is an integer variable and I would like to do a loop that increments the "i" from 40000 to 90000 adding 1000 each time. Each Result will appear in a ComboBox. Example: 40000 - 41000 - ...
0
votes
0answers
77 views

Pascal double-linked list need to move element as first

procedure mazakais(var L:List); var min,i,idet:integer; ms:array[1..8] of integer; var E:StdElement; begin min:=32000; if not LIST_EMPTY(L) then with L^ do begin for i:=1 to 8 do ...
0
votes
1answer
66 views

How do I sort a file of records using an insertion sort in pascal?

So I have a .dat file which consists of about twenty records. The fields of the record are: Name, Date and Score and I want to sort the records by score so that I can display them in a high score ...
5
votes
2answers
112 views

Nested constants of nested structured types are unsupported?

Despite of what Delphi reference says structured types can contain other structured types; a type can have unlimited levels of structuring with notable exception what structured typed constants ...
0
votes
1answer
58 views

Bit functions in Think Pascal

I am converting an old program written on Mac Think Pascal to Pascal on Windows. Think Pascal has functions for bit manipulations, such as btst(n, i : longint) : boolean bitxor(i, j : longint) : ...
0
votes
2answers
55 views

Compute arrival date given departure date and duration

I am trying to make a program to calculate when train comes for a to b. I have time when train leaves and the time it takes to travel to distance from a to b. I need help a algorithm to find if that ...
2
votes
2answers
145 views

Passing self as parameter in Delphi [duplicate]

I would like to pass "self" as parameter to a method of another class (in a different unit). However the type of the first class is unknown in the second one, because I can't put the first unit into ...
1
vote
2answers
117 views

ListView not selecting correct row

Basically I want to have a ListView populated by a StringList and when I select a ListItem and press Up or Down it moves the item up or down (in both lists). I'm using the ListView's onKeyDown to ...
-2
votes
1answer
157 views

Dephi / Pascal Syntax (SAM Broadcaster PAL script) - How can I create a timestamp with millisecond object?

I'm a noob so please don't assume I know much. Feel free to let me know if I use incorrect termanology. I have a function in a PAL script (based on Pascal / Delphi) in SAM broadcaster, radio ...

1 2 3 4 5 15