The object-pascal tag has no wiki summary.
0
votes
2answers
70 views
Object Pascal: Must all objects (classes) be freed?
Can I throw around classes without freeing them, or will my software start spouting leaks?
For example can I do this
Engine := TEngine.Create(TV);
Then get rid of the reference without any ...
0
votes
1answer
23 views
Pascal: Calling an empty method on a class segfaults
I've got a very stark class.
unit StuffClass;
{$mode objfpc}{$H+}
interface
type
TStuffClass = class
public
procedure Update;
end;
implementation
procedure TStuffClass.Update;
...
1
vote
1answer
216 views
dbgrid without client dataset
I have a form with a dbgrid and an sqlquery component. I am trying to fill the dbgrid with the sqlquery. When I do I get the message, "Operation not allowed on Unidirectional dataset." I do NOT want ...
1
vote
1answer
265 views
Delphi Indy LAN Chat
I have a basic indy TCP server and a client in which the client sends messages to the server. In the OnConnect event on the server, the clients IP is added to a list box. I would like to get this ...
1
vote
0answers
27 views
Quality metrics for object pascal
Does anyone know any tools for measuring complexity of object pascal. I am looking for things like number of lines of code, objects, if statements nesting etc and generally assessing the quality of ...
0
votes
0answers
83 views
Report Application Pascal - Variable value not being shown correctly
I'm building a report using Report Builder. It uses Report Application Pascal, which is based on Delphi Object Pascal. I'm still learning this and struggling with a variable value.
I have a variable ...
2
votes
1answer
327 views
Delphi 2010, Connect to mySQL and Firebird database without lib dlls
I am writing a portable application that connects to both a firebird database and a mysql database. I am writing the application in Delphi 2010, and using dbExpress components to connect to both ...
2
votes
1answer
455 views
Inno Setup - FileCopy use wildcard character in pathname
I'm trying to copy all database files over from a previous installation to a new installation, which has a new pathname. The problem is that the installer will not know the names of the database ...
1
vote
1answer
101 views
How to make class constructor body calls descendant's overriden method/property?
I'm writing an ORM framework and got stuck in a way to automatically determine table name from class name. In my base object for the ORM to work, I have:
TghModel = class
...
class var FTableName: ...
0
votes
1answer
52 views
lazarus-Error compiling a database driven program in lazarus
I am trying to create a program using the postgresql database with lazarus.
I got the following error in compiling:
registersqldb.pas(72,3) Fatal: Can not find unit mysql55conn used by ...
2
votes
3answers
262 views
In-memory layout of array in Turbo Pascal
We have an old application in Turbo Pascal which can save its internal state into a file, and we need to be able to read/write this file in a C# application.
The old application generates the file by ...
1
vote
1answer
118 views
Open source object-database that work with Lazarus
I've been googling for object-databases that work with Lazarus but I've found nothing.
Has anyone know about an open-source object-database that work with it? Maybe something like db4o. Thanks in ...
1
vote
3answers
611 views
INDY 10 TCP Server - Combine with non thread safe VCL Code
VCL is not thread safe. Therefore I guess it is not a good idea to write information to the gui in the INDY 10 TCP server.execute(...) function .
How to send information from the server execute to ...
2
votes
1answer
457 views
Typecasting WideString breaks array of widechar
I use this procedure to ENUM the keys into a TNTListView (UNICODE) in Delphi 7
procedure TForm1.TntButton1Click(Sender: TObject);
var
k : HKEY;
Buffer : array of widechar;
i : ...
0
votes
1answer
152 views
What tips are there for rewriting stream code so it doesn't use any units?
I am trying to port some xor-encryption code so it doesn't use any other units. I want to use just the commands, variables, and types that are supported natively by the compiler.
For example, here's ...
1
vote
1answer
146 views
Missing @InitializeRecord
I am working on a delphi 7 project with a minimalistic system.pas /sysinit.pas
When I try to use records in my project my compiler brings this error:
System unit out of date or corrupted: missing ...
2
votes
1answer
340 views
Messagebox delay in Delphi
I'm having problems with the messagebox API.
I use messageboxw to ask a question to the user.
For example my program is very busy with threads, etc. and when a user clicks on a button that shows the ...
1
vote
1answer
1k views
Delphi return custom result for showmodal
I have a form with 2 buttons (1 is mrOK - 1 is mrCancel).
As soon as I click one of the buttons the form closes (OnClose gets called), no matter what.
I would like to return a custom value. like ...
1
vote
2answers
295 views
VirtualStringTree OnNodeRightClick
I am looking for a procedure or something that gets fired if I right click on a Node (or in general on the VirtualStringTree)
I have the following scenario:
I have my VST close to a listview.
I can ...
2
votes
2answers
506 views
Read REG_BINARY to String
I use this code to read binary data from the registry to a string
function ReadBinary (RootKey: HKEY; SubKey,ValueName: WideString; var Data : String): Bool;
var
Key : HKey;
Buffer : array ...
1
vote
1answer
353 views
Indy sending file and close open handle(s)
I use this code to send a file to a client.
procedure TForm1.IdTCPServer1Execute(AThread: TIdPeerThread);
var
hFile : THandle;
FileBuff : array [0..1023] of byte;
dwRead : DWORD;
Recieved : ...
0
votes
1answer
365 views
Winsock recv in different threads
I am using winsock as a client with about 10 threads.
Each thread has it's own unique connection to the same host and port.
All threads are connected and they all need to read a certain amount of ...
1
vote
1answer
162 views
VirtualStringTree how to free multiple nodes
I have a VirtualStringTree with X roots and X childnodes.
Every root has a special NodeData assigned.
Every childnode has another NodeData assigned.
How do I know OnFreeNode which is which? Cause I ...
3
votes
1answer
333 views
Send BS (Backspace) to a TMemo
I would like to send a BackSpace control char to a TMemo like the user would actually press the BackSpace button.
My Memo is readonly and if I click a button it should delete the last char in the ...
0
votes
2answers
388 views
Add Buffer to ByteArray
I use winsock to receive a 1024byte buffer like this:
var
buffer : array[0..1023] of byte;
endarray : array of byte;
hFile : THandle;
dwWritten : DWORD;
dwRead : DWORD;
begin
...
1
vote
1answer
244 views
Icons force TPopupMenu to OwnerDraw?
I assigned some icons to a TPopUpMenu but it looks like it changed to ownerdraw (it's set to false)...
I also use the XP Manifest but it still looks so old (Win2000 Style)... Is it possible make it ...
0
votes
3answers
409 views
Delphi DLL Inject and sharing vars
I use BTMemoryModule to inject a DLL into a process.
The Main/Parent Process can call a function/procedure but what about the other way?
Can a dll read/get a var from the Main/Parent process or call ...
0
votes
0answers
117 views
Virtual TreeView losing toUseExplorerTheme
I have gridlines and toUseExplorerTheme enabled in virtualtreeview (DesignTime).
I would like to remove the gridlines in runtime but it seems like I'm losing the toUseExplorerTheme property. Is this ...
1
vote
0answers
716 views
Use Delphi / Object Pascal within Visual Studio IDE [closed]
Background:
I've been using Delphi since version 2, and since moving up to around v5/v6, I've never upgraded to get newer features - but instead to get around bugs in the IDE/compiler. Today, I ...
4
votes
1answer
200 views
How do i use events at design time in Smart Mobile Studio?
Am i missing something here? I purchased Smart Mobile Studio two days ago, and been trying its features. I would expected that it would at least emulate delphi’s event model. No?
Shouldn't I be ...
2
votes
1answer
179 views
Regular expressions in Smart Mobile Studio
How do I work with regular expressions in Smart Mobile Studio? For example, how do I code following example in Object Pascal?
var re = /\w+\s/g;
var str = "fee fi fo fum";
var myArray = ...
10
votes
3answers
659 views
What is the better way to check for an empty string in Delphi?
A common condition that all programs should do is to check if string are empty or not.
Take the below statements:
(1)
if Length(Str)=0 then
// do something
(2)
if Str='' then
// do something
...
3
votes
2answers
590 views
How can I compute a difference between two strings?
I want to create a function in Delphi that computes different levels of two strings. If two strings are equal (ignoring case), then it should return 0, but if they are not equal, it should return the ...
5
votes
1answer
1k views
Delphi / Pascal Example for Calling OpenSSL EVP functions
Does anyone have a Delphi / Pascal example for calling the below OpenSSL functions...
...
5
votes
3answers
324 views
How do you get a reference to an object created in a WITH statement? [duplicate]
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 ...
1
vote
2answers
319 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 ...
2
votes
2answers
239 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 ...
3
votes
2answers
1k 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" ...
3
votes
2answers
1k 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
518 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
636 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 ...
2
votes
2answers
107 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
6answers
743 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
2
votes
2answers
102 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 ...
3
votes
2answers
484 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 ...
0
votes
7answers
1k 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 ...
1
vote
1answer
1k 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
326 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
779 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 ...
3
votes
2answers
765 views
Where can I find a good Delphi or Object Pascal implementation for a circular buffer [closed]
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 ...
