Tagged Questions
The object-pascal tag has no wiki summary.
5
votes
3answers
180 views
How do you get a reference to an object created in a WITH statement? [closed]
Possible Duplicate:
Reference object instance created using “with” in Delphi
One method that I use to create query objects in Delphi follows the first code sample. It gives me ...
3
votes
2answers
328 views
Check if a file exists on a remote server using Delphi
I need to check if a file exists on a server using delphi..
The idea is to send a request to the server (ex : http://www.example.com/file.txt) and check the status code of the response..
how is it ...
3
votes
2answers
199 views
TDataModule inheritance
When I'm trying to inherit TDataModule Delphi treat descendant class like a form giving them properties like font and Client properties. ("property does not exists" exception on a run-time)
...
3
votes
1answer
306 views
Is there a good Object Pascal mode for Emacs?
I've been doing some Object Pascal lately, and I've been unable to find a good mode for it. I've tried delphi-mode and pascal-mode, both of which try to help too much; when they fail to understand ...
3
votes
2answers
213 views
How to get a pointer to a method in a base class from a child class in delphi (object pascal)?
type
TMyBaseClass = class
public
procedure SomeProc; virtual;
end;
TMyChildClass = class(TMyBaseClass)
public
procedure SomeProc; override;
end;
var
SomeDelegate: procedure of ...
3
votes
3answers
561 views
Where can I find a good Delphi or Object Pascal implementation for a circular buffer
My main purpose is to have a generic data buffer that I can use for transfers.
I'm thinking of something along the lines of what XCopy did.
Is there something already made out there or a good ...
2
votes
2answers
422 views
Webkit interface
I have been looking into webkit HTML offscreen rendering lately, but i am unable to find a Delphi library that wraps the webkit DLLs. I have tried using the Delphi Chromium package, which does "kinda" ...
2
votes
2answers
97 views
Searching an unorderd list of descendants
In my Delphi 2007 database application, I have a list of Generations. Each Generation has a list of pricing templates, each of which is a set of values. In the application, the user can create a line ...
2
votes
3answers
78 views
Which language was first to introduce the “in” keyword first: SQL or Object Pascal?
(Or possibly another language?)
I know both SQL and Object Pascal first appeared in 1986, but I'm not sure which one had the in keyword first, so anyone who can point me to a definitive source will ...
1
vote
2answers
69 views
Serialization of a TCollection which is not declared in a TComponent?
Is it possible to serialize a TCollection which is not encapsulated in a TComponent ?
For example, I have a custom TCollection. I can't use TMemoryStream.WriteComponent() on my TCollection ...
1
vote
2answers
89 views
Delphi Type equivalence and Type equality syntax
What is the difference between these two syntaxes ?
Type
AnIntType = Integer;
AnotherIntType = Type Integer;
I've noticed that the second version is less compatible when it's used in procedures ...
1
vote
5answers
455 views
Why we need Delphi prism
What is the need to use delphi prism instead of Visual studio;
i am a delphi programmer so i like object pascal but what else are that delphi prism have that other does not have
1
vote
1answer
617 views
Adding multiple function calls to a case of in delphi?
case i of
0..99 : Function-call('bobo') ;
100..209 : function-smell('Hobo');
210..300 : function-yikes('argh');
end;
But what if I wanted 210..300 to call both ...
0
votes
7answers
485 views
How to make in Object Pascal “class of interface” (or “interface of interface”) type
//----------------------------------------------------------------------------
type
ISomeInterface = interface
procedure SomeMethod;
end;
// this is wrong, but illustrates that, what i ...
0
votes
2answers
633 views
Basic email validation within Inno Setup script
I'm wanting to do a basic string validation within an Inno Setup script to be relatively certain the string is an email address. I just want to see that there is a '@' character followed by a '.' ...
0
votes
1answer
207 views
Output Of a Process
I'm developing a program using Lazarus, that execute gcc:
var
AProcess: TProcess;
begin
if SaveDialog1.Execute then
AProcess := TProcess.Create(nil);
AProcess.CommandLine := 'gcc.exe ' + ...
0
votes
2answers
514 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 above and compile, gpc ...