dummzeuch
|
Registered User
|
|
|
Nov 21 |
comment |
Adding validator symbol next to control on a Delphi form. But beware: This component is difficult to understand without an example (but there is one in the jvcl installation), the validators that come with the jvcl are mostly useless and depending on how often it is called it will slow down your GUI code. But the concept is nice. |
|
Nov 19 |
answered | Use SSL with Delphi yet still having a single exe |
|
Nov 13 |
comment |
working with Delphi and Access Depending on who you ask, database aware controls are evil. But at least you should know that they exist and what advantages and disadvantages they have. |
|
Nov 9 |
comment |
How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks? @runner: VB does not have a PChar type but can only convert its own string type to PChar and back. So there is no way you could call a FreeMemory function from VB (OK, there might be some hack to do it). (I am talking about VB6 like in the original question, I have no idea about VB.NET in that respect.) |
|
Nov 9 |
answered | How can I return a PChar from a DLL function to a VB6 application without risking crashes or memory leaks? |
|
Nov 7 |
comment |
Is There A Fast GetToken Routine For Delphi? But will that work with unicode? |
|
Nov 6 |
comment |
How to port delphi library to Win CE? @Marco: But according to marketing (I have no personal experience with it) it is very compatible to Delphi. If it was me who was tasked with porting that library I would try Prism first. |
|
Nov 5 |
comment |
How to port delphi library to Win CE? @Marco: That depends on the library. If it compiles with Prism without many changes, it would be much easier than recoding in C#. |
|
Nov 5 |
comment |
What is the difference between types defined in the implementation as compared to the interface section of a unit? There actually is an overhead involved: If you change the interface section of a unit, the compiler will recompile all units that use this unit which in turn will force it to recompile all units that use these recompiled units. A change in the implementation section does not trigger this recompile. But that's only a compile time issue, there is no runtime overhead involved and even the compile time does not matter that much given the speed of the Delphi compiler. |
|
Nov 5 |
answered | How to port delphi library to Win CE? |
|
Nov 5 |
comment |
How to pass and return objects to and from a DLL? @mghie: Please don't get discouraged by people like this. For each of them there are 100th that do a search first, find their answer and are gone again. You never hear from them. |
|
Oct 30 |
comment |
Get BPL File Name It's even easier: Result := PChar(Result); |
|
Oct 23 |
comment |
Find current method name in Delphi But beware: Each call to these functions adds quite some overhead because it does a lookup on the address. This should not be done in production code without need. |
|
Oct 21 |
comment |
What is the correct usage of GetLastError and FormatMessage in Delphi ? Note: Using a resource string will result in an API call, so you lose the error code! |
|
Oct 14 |
answered | Determining Delphi Runtime Packages to Include |
|
Oct 12 |
accepted | Why don’t I get hotkey underlines in a Delphi TMainMenu |
|
Oct 12 |
answered | Why don’t I get hotkey underlines in a Delphi TMainMenu |
|
Oct 5 |
comment |
Is there a way to install Delphi 2010 on Windows 2000 It is now several weeks later and I have not yet seen any problems. But again, I am not using all the features so there still might be something in store. |
|
Oct 5 |
revised |
What is the accepted way to use frames in Delphi? fixed typo |
|
Oct 2 |
comment |
Move project from Delphi 3 to Delphi 2010 All Delphi versions tried to upgrade projects from all previous versions. They even mostly succeeded. |
|
Oct 2 |
comment |
Move project from Delphi 3 to Delphi 2010 The dfm file conversion utility is called "convert". |
|
Sep 30 |
answered | What is the accepted way to use frames in Delphi? |
|
Sep 30 |
awarded | ● Nice Answer |
|
Sep 29 |
answered | Static classes in Delphi (Win32) |
|
Sep 24 |
answered | saving a records containing a member of type string to a file (Delphi, Windows) |
|
Sep 24 |
comment |
saving a records containing a member of type string to a file (Delphi, Windows) XML is all well for some type of data, but in this case I think it's overkill. |
|
Sep 23 |
comment |
Delphi, frames vs forms. What for multi-document interface? Exactly my thought: Who would go for embedded forms if he could just use frames instead? Frames are just so much less hassle. And even if you need it as a form later on, you can just create an empty form ad add the frame with align=alClient. |
|
Sep 21 |
answered | simple VirtualFilesystem for delphi - must be FREE! |
|
Sep 21 |
answered | Best way of validating modal dialog fields? |
|
Sep 17 |
answered | [Delphi] If everything implemented an interface, would this be garbage collection? |
|
Sep 6 |
comment |
Is there a way to install Delphi 2010 on Windows 2000 So far it seems to work. I have used it for about 4 hours without seeing any adverse effects. But I have by no means used all the features yet. |
|
Sep 6 |
comment |
Is there a way to install Delphi 2010 on Windows 2000 I agree, in principle, but unfortunately the computer I am using is not up to running multiple virtual machines. If I can't get it to work with Windows 2000 I guess I will have to use a vm anyway... |
|
Sep 6 |
awarded | ● Scholar |
|
Sep 6 |
comment |
Is there a way to install Delphi 2010 on Windows 2000 Thanks, that got me over the "requires at least Windows XP" problem, we'll see whether it will work after the installation... |
|
Sep 6 |
revised |
Is there a way to install Delphi 2010 on Windows 2000 added 513 characters in body |
|
Sep 6 |
comment |
Is there a way to install Delphi 2010 on Windows 2000 Delphi 2009 is installed on that computer, so I should have .NET 2.0 already installed. |
|
Sep 6 |
comment |
Is there a way to install Delphi 2010 on Windows 2000 Notice the word "Target" in there? |
|
Sep 6 |
asked | Is there a way to install Delphi 2010 on Windows 2000 |
|
Aug 26 |
awarded | ● Enlightened |
|
Aug 26 |
accepted | No memory leak when setting form as frame’s parent? |
|
Aug 18 |
awarded | ● Nice Answer |
|
Aug 18 |
comment |
No memory leak when setting form as frame’s parent? Yes, if both Parent and Owner are the form the form in its role of Owner will free the frame. |
|
Aug 17 |
comment |
Delphi Function to Display Number of Bytes as Windows Does If you divide by 1024 you should also use the ISO standard units TiB, GiB, MiB and KiB. |
|
Aug 16 |
comment |
Delphi: Parsing a record of unknown structure I don't think a record can have published properties, they can only be private and public (protected doesn't make sense because they do not support inheritance). |
|
Aug 16 |
answered | No memory leak when setting form as frame’s parent? |
|
Aug 15 |
answered | Delphi: Parsing a record of unknown structure |
|
Aug 13 |
comment |
Why don’t I get hotkey underlines in a Delphi TMainMenu Yes, I am sure. |
|
Aug 13 |
comment |
Why don’t I get hotkey underlines in a Delphi TMainMenu No, it's different. I already checked the Windows setting. |
|
Aug 13 |
revised |
Why don’t I get hotkey underlines in a Delphi TMainMenu the Delphi tag got lost |
|
Aug 13 |
asked | Why don’t I get hotkey underlines in a Delphi TMainMenu |
