Search Results

3
votes

Password encryption in Delphi

TOndrej has the right approach. You should never store a password using a reversible cypher. As it was correctly pointed out, if your "master" key were ever compromised, the entire system is compro …
7
votes

Should GExperts Functionality be Incorporated into Delphi?

What features in GExperts would you most like to be included in Delphi itself? I would suggest that you come up with prioritized list of your, say, top 10 features. Then pop on over to Quality Cent …
4
votes

Delphi adding {$R *.res} in the .dpr file

It depends on what else you've done to the .dpr file. Delphi expects that file to be layed out in a certain way, and if you've modified it in such a way that the internal IDE parsers are unable to …
4
votes

In what order does Class Completion put its results?

This is a bit complicated to answer since it is dependent on how your methods are already arranged. If they're already implemented in alphabetical order, it will try and maintain that. If the IDE c …
3
votes

LIB file output locations for Delphi 2009 packages.

On the Project|Options|Delphi Compiler|Linking page, the first two items are C++Builder .hpp output directory and C++Buidler .obj output directory should do what you want. The .lib and .bpi files. …
2
votes

TMonitor synchronization / Application.ProcessMessages

TMonitor only blocks a different thread from acquiring the lock. What is happening is this; by processing messages from within the lock, you're getting back into this same function …
12
votes

GetMem x ReallocMem

GetMem always allocates memory, FreeMem always releases/frees memory, ReallocMem may do one, the other, or both. In fact, when used properly, ReAllocMem is really the only memory management API nee …
4
votes

Delphi - Class TListView not found

This is typically an error during the streaming of a .DFM. Usually this error occurs with TLabel components because many folks remove the TLabel fields from the form or frame in order to cut down o …
11
votes

Why shouldn’t you use a handle during component creation or streaming?

At it's core, it's a performance thing. There are potentially other "bad" side-effects that can happen as well since during the streaming process. Things are in "mid-construction" and all that is n …
12
votes

What’s the difference between CreateWnd and CreateWindowHandle?

So far most of the answers here are pretty much on the mark and you would do well to heed their advice. However, there is a little more to this story. To your specific question about when you would …
1
vote

is there a way to disable the hint for a TOpenDialog in delphi

Since this is a Windows common dialog, you may have to jump in and hook into the dialogproc and manually try and process the tooltip messages. You can look here for a start about how to customize t …
6
votes

Adding forms and frames to packages

Vegar is on the right track. In order for the project manager to display the .dfm node, it needs to know that a form/frame/datamodule is associated with the pas file. It looks at the {Form1} commen …
7
votes

How to import a function from a DLL made in Delphi?

Since you don't have the source to the DLL, you'll need to get a little creative on the C side of things. Even though the ShortString is listed as the function result, it is actually the responsibi …
21
votes

How does WriteLn() really work?

Writeln is what we call a compiler "magic" function. If you look in System.pas, you won't find a Writeln that is declared anything like what you would expect. The compiler literally breaks it all d …
7
votes

“Left side cannot be assigned to” for record type properties in Delphi

Since "Rec" is a property, the compiler treats it a little differently because it has to first evaluate the "read" of the property decl. Consider this, which is semantically equivalent to your exam …

1 2 3 next
15 30 50 per page