4
votes
6answers
188 views
Tutorial for Pascal/Delphi for C++-Coders
Hi,
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?
0
votes
5answers
152 views
C++ Pascal’s triangle
Hello, I'm looking for an explanation for how the recursive version of pascal's triangle works
The following is the recursive return line for pascal's triangle.
int get_pascal(c …
1
vote
1answer
37 views
How to write inline assembly in gnu pascal?
Since there is not offical reference,I got only one tutorial
gpcasm.zip .But when I try to follow the tut and try the inline assembly example on my debian.The gpc was not happy w …
1
vote
7answers
168 views
Recommended books/tuts/useful links on pascal programming language
Tried google, but could not find good enough book/tuts on pascal programming language.So what are your recommendations?
thanks.
1
vote
2answers
41 views
pascal string to date
Can someone tell me what's wrong with this piece of code:
ShortDateFormat := 'dd/mm/yyyy';
j:=StrToDate('05/05/1999');
I keep getting
An unhandled exception occurred at $00000 …
0
votes
2answers
69 views
How to do OOP with Pascal?
I am learning OOP with the pascal programming language.After googling the Internet, I found the OOP -- The GNU Pascal Manaul.But when I typed in the source code of the example abov …
2
votes
3answers
261 views
How do I make the Lazarus IDE look and work like Delphi 2007 or newer?
I've begun working with using Lazarus to make some simple utilities for my own use on Ubuntu 9.10. I know many people like the modular Delphi 7 layout, but I hate it. I find it ann …
2
votes
8answers
257 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 …
1
vote
4answers
2k views
Delphi - Accessing data from dynamic array that is populated from an untyped Pointer
Hi im using Delphi 2009 not that it has a large affect on what im doing i think I would run into the same if i was still on 2007.
I have a scsi call that outputs data to a pointer …
0
votes
1answer
15 views
How to create a simple pascal-program in Codegear RAD Studio 2009?
For example, this simple program:
Program Helloworld;
Begin
writeln ('Hello world!');
readln;
End;
1
vote
1answer
59 views
Porting Code to Windows 7
I wrote a game years ago (under Windows 95) in Pascal. Since then over time I'd checked it and it still ran with the newer OSs. It works in XP. It works in Vista. However under …
2
votes
6answers
98 views
Help in Pascal writing a word counter
I have to write a program in Pascal which has to detect how many words on a text (input by the user) start with a certain letter. I can't use arrays, can you give me any hints as t …
2
votes
4answers
251 views
Hanging else problem?
What is the "hanging else" problem? (Is that the right name?)
Following a C++ coding standard (forgot which one) I always
use brackets (block) with control structures. So I don't
…
2
votes
3answers
206 views
Delphi: How to have non-contiguous subrange enumeration type?
While the following subrange enumeration declaration works:
type
TReceiptCode = 'A'..'F';
This does not:
type
TReceiptCode = ' ','A'..'F', 'R';
Nor does
type
TRece …
0
votes
1answer
68 views
How to shown an Hyperlink in Inno Setup?
I'm making a validation in my Inno setup installer to check whether or not a Microsoft update is installed on the machine, if not, I'm showing a simple message box telling the user …
